mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
AG2 (formerly AutoGen) integration demonstrating: - Multi-agent GroupChat (researcher + analyst) behind a single Plano endpoint - OpenAI-compatible streaming HTTP endpoint via FastAPI - Internal multi-agent collaboration transparent to Plano routing - Unified observability through Plano's tracing layer
22 lines
492 B
TOML
22 lines
492 B
TOML
[project]
|
|
name = "multi-agent-ag2"
|
|
version = "0.1.0"
|
|
description = "AG2 Multi-Agent Research Team with Plano orchestration"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.14"
|
|
dependencies = [
|
|
"ag2[openai]>=0.11.0",
|
|
"fastapi>=0.115.0",
|
|
"uvicorn>=0.30.0",
|
|
"openai>=1.0.0",
|
|
"httpx>=0.24.0",
|
|
"opentelemetry-api>=1.20.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = []
|