Files
multiAgentTry/backend/app/routers/heartbeats.py
Claude Code dc398d7c7b 完整实现 Swarm 多智能体协作系统
- 新增 CLIPluginAdapter 统一接口 (backend/app/core/agent_adapter.py)
- 新增 LLM 服务层,支持 Anthropic/OpenAI/DeepSeek/Ollama (backend/app/services/llm_service.py)
- 新增 Agent 执行引擎,支持文件锁自动管理 (backend/app/services/agent_executor.py)
- 新增 NativeLLMAgent 原生 LLM 适配器 (backend/app/adapters/native_llm_agent.py)
- 新增进程管理器 (backend/app/services/process_manager.py)
- 新增 Agent 控制 API (backend/app/routers/agents_control.py)
- 新增 WebSocket 实时通信 (backend/app/routers/websocket.py)
- 更新前端 AgentsPage,支持启动/停止 Agent
- 测试通过:Agent 启动、批量操作、栅栏同步

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 17:32:11 +08:00

48 lines
999 B
Python

"""
心跳管理 API 路由
"""
from fastapi import APIRouter
from pydantic import BaseModel
from typing import Dict
import time
router = APIRouter()
heartbeats_db = {}
class Heartbeat(BaseModel):
agent_id: str
timestamp: float
is_timeout: bool = False
@router.get("/")
async def list_heartbeats():
"""获取所有 Agent 心跳"""
return {
"heartbeats": {
"claude-001": {
"agent_id": "claude-001",
"timestamp": time.time() - 30,
"is_timeout": False
},
"kimi-001": {
"agent_id": "kimi-001",
"timestamp": time.time() - 60,
"is_timeout": False
}
}
}
@router.post("/{agent_id}")
async def update_heartbeat(agent_id: str):
"""更新 Agent 心跳"""
heartbeats_db[agent_id] = {
"agent_id": agent_id,
"timestamp": time.time(),
"is_timeout": False
}
return {"success": True}