-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "multi_agent_system"
version = "0.1.0"
description = "A sophisticated multi-agent system using LangChain and LangGraph"
requires-python = ">=3.11"
authors = [
{name = "Cesar Goncalves", email = "goncalves.cesaraugusto94@gmail.com"},
]
dependencies = [
"langchain==0.3.25",
"langchain-openai==0.3.16",
"langgraph==0.4.3",
"langchain-core==0.3.59",
"langchain-community==0.3.24",
"langchain-chroma==0.2.3",
"fastapi==0.115.12",
"uvicorn==0.34.2",
"openai==1.78.1",
"chromadb==0.6.3",
"pydantic==2.11.4",
"pydantic-settings==2.9.1",
"tavily-python==0.7.2",
"python-dotenv==1.1.0",
"pre-commit==4.2.0",
"pypdf2==3.0.1",
"python-multipart==0.0.20",
"rich==14.0.0",
"aiofiles==23.2.1"
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["backend", "backend.agents", "backend.utils"]
[tool.setuptools.package-data]
"*" = ["*.json", "*.yaml", "*.yml"]