Agent管道——GCP上的多Agent系统
部署在Google Cloud上的多代理潜在客户资格认证系统。 演示项目涵盖:Vertex AI、MCP服务器、云运行、发布/订阅、OpenTeleMetry、DLP。
建筑
Orchestrator Agent (Cloud Run)
├── Enrichment Agent (Cloud Run) → MCP Tools Server
├── Qualification Agent (Cloud Run) → Vertex AI (Gemini)
└── Notification Agent (Cloud Run) → Email/Webhook
Pub/Sub : communication event-based entre agents
Firestore : état des leads
OpenTelemetry → Cloud Logging/Monitoring
DLP API : filtrage données sensibles堆栈
- Python 3.12+FastAPI+异步
- Google Cloud Run(无服务器容器)
- 顶点AI(双子座2.0闪光)
- MCP协议(模型上下文协议)
- 发布/订阅(代理到代理消息传递)
- 开放遥测(跟踪+指标)
- DLP API(护栏)
部署
gcloud run deploy orchestrator --source agents/orchestrator/
gcloud run deploy enrichment --source agents/enrichment/
gcloud run deploy qualification --source agents/qualification/
gcloud run deploy mcp-tools --source mcp_server/