-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "agui-test-frameworks"
version = "0.1.0"
description = "AG-UI Multi-Framework Test Suite"
requires-python = ">=3.10"
dependencies = [
# Common
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
"anthropic>=0.40.0",
# Agno Framework
"agno>=1.0.0",
# LangGraph Framework
"langgraph>=0.2.0",
"langchain-anthropic>=0.3.0",
"langchain-openai>=0.3.0",
"langchain-google-genai>=2.0.0",
"langchain-core>=0.2.0",
"ag-ui-langgraph>=0.0.20",
# CrewAI Framework
"crewai>=0.80.0",
"ag-ui-crewai>=0.0.1",
# PydanticAI Framework
"pydantic-ai>=0.1.0",
# LlamaIndex Framework
"llama-index-protocols-ag-ui>=0.2.0",
"llama-index-core>=0.10.0",
"llama-index-llms-openai>=0.1.0",
"llama-index-llms-anthropic>=0.6.0",
"llama-index-llms-gemini>=0.4.0",
# AG2 (AutoGen) Framework
"ag2[openai]>=0.6.0",
# Google ADK Framework
"google-adk>=1.0.0",
# Raw LLM APIs
"openai>=1.0.0",
"google-generativeai>=0.8.0",
]
[tool.uv]
dev-dependencies = []
[tool.uv.workspace]
members = [
"a2a-playground",
]