Files
multiAgentTry/backend/requirements.txt
Claude Code 1719d1f1f9 重构 API 路由并新增工作流编排功能
后端:
- 重构 agents, heartbeats, locks, meetings, resources, roles, workflows 路由
- 新增 orchestrator 和 providers 路由
- 新增 CLI 调用器和流程编排服务
- 添加日志配置和依赖项

前端:
- 更新 AgentsPage、SettingsPage、WorkflowPage 页面
- 扩展 api.ts 新增 API 接口

其他:
- 清理测试 agent 数据文件
- 新增示例工作流和项目审计报告

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 16:36:25 +08:00

39 lines
544 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# FastAPI 核心依赖
fastapi>=0.110.0
uvicorn[standard]>=0.27.0
pydantic>=2.0.0
# CLI 工具
typer>=0.9.0
rich>=13.0.0
# 异步文件操作
aiofiles>=23.0.0
# 文件锁
filelock>=3.13.0
# YAML 解析
pyyaml>=6.0
# HTTP 客户端(调用 LLM API
httpx>=0.25.0
# 异步 HTTP 客户端Ollama 等 LLM 调用)
aiohttp>=3.9.0
# Anthropic APIClaude
anthropic>=0.18.0
# OpenAI API可选
openai>=1.0.0
# WebSocket 支持
websockets>=12.0
# 进程管理
psutil>=5.9.0
# APscheduler定时任务
apscheduler>=3.10.0