forked from langchain-ai/oap-langgraph-tools-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 908 Bytes
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
[project]
name = "suitecre_agents"
version = "1.0.0"
description = "LangGraph multi-agent system: Nexa and Lead Gen agents"
authors = [
{ name = "SuiteCRE" },
]
requires-python = ">=3.11.0,<3.13"
dependencies = [
# Core LangGraph
"langgraph>=0.6.2",
"langgraph-cli[inmem]>=0.3.6",
"langchain>=0.3.27",
"langchain-core>=0.3.72",
# LLM Providers
"langchain-anthropic>=0.3.18",
"langchain-openai>=0.3.28",
"langchain-google-genai>=2.0.0",
# Database & Storage
"supabase>=2.15.1",
"pydantic==2.11.3",
# Nexa Agent Tools
"mcp>=1.9.1",
"aiohttp>=3.8.0",
# Lead Generation Tools
"firecrawl-py>=0.0.1",
"tavily-python>=0.3.0",
"google-search-results>=2.4.2",
]
[tool.setuptools]
packages = ["tools_agent", "suitecrm_tools"]
[dependency-groups]
dev = [
"langgraph-cli[inmem]>=0.3.6",
"ruff>=0.8.4",
]