- 添加 start_all.sh 一键启动脚本,支持启动llama-server和FastAPI服务 - 修改启动脚本使用venv虚拟环境替代conda环境 - 更新README.md,添加一键启动脚本使用说明 - 更新py_tree_generator.py,添加final_prompt返回字段 - 禁用Qwen3模型的思考功能 - 添加RAG检索结果的终端打印 - 移除ROS2相关代码(ros2_client.py已删除)
40 lines
696 B
Plaintext
40 lines
696 B
Plaintext
# Web Framework and Server
|
||
fastapi>=0.104.0
|
||
uvicorn[standard]>=0.24.0
|
||
python-multipart>=0.0.6
|
||
websockets>=12.0
|
||
|
||
# Data Validation and Serialization
|
||
pydantic>=2.5.0
|
||
jsonschema>=4.20.0
|
||
|
||
# AI and Vector Database
|
||
openai>=1.3.0
|
||
chromadb>=0.4.0
|
||
|
||
# Visualization
|
||
graphviz>=0.20.0
|
||
|
||
# ROS 2 Python Client - 已注释,项目已与ROS2解耦
|
||
# rclpy>=0.0.1
|
||
|
||
# Document Processing
|
||
unstructured[all]>=0.11.0
|
||
|
||
# HTTP Requests
|
||
requests>=2.31.0
|
||
|
||
# Progress Bars and UI
|
||
rich>=13.7.0
|
||
|
||
# Type Hints Support
|
||
typing-extensions>=4.8.0
|
||
|
||
# ROS 2 Build Dependencies - 已注释,项目已与ROS2解耦
|
||
# empy==3.3.4
|
||
# catkin-pkg>=0.4.0
|
||
# lark>=1.1.0
|
||
# colcon-common-extensions>=0.3.0
|
||
# vcstool>=0.2.0
|
||
# rosdep>=0.22.0
|