forked from emcie-co/parlant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
137 lines (113 loc) · 3.52 KB
/
pyproject.toml
File metadata and controls
137 lines (113 loc) · 3.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[tool.poetry]
name = "parlant"
version = "3.0.2"
license = "Apache-2.0"
description = ""
authors = ["Yam Marcovitz <yam@emcie.co>", "Dor Zohar <dor@emcie.co>"]
packages = [{ include = "parlant", from = "src" }]
readme = "README.md"
[tool.poetry.scripts]
parlant = "parlant.bin.client:main"
parlant-server = "parlant.bin.server:main"
parlant-prepare-migration = "parlant.bin.prepare_migration:main"
[tool.poetry.dependencies]
aiofiles = "^24.1.0"
aiopenapi3 = "0.8.1"
aiorwlock = "^1.5.0"
authlib = "^1.6.5"
boto3 = "^1.35.70"
cachetools = "5.5.2"
click = "^8.1.7"
colorama = "^0.4.6"
coloredlogs = "^15.0.1"
contextvars = "^2.4"
croniter = "^5.0.1"
fastapi = "0.115.12"
fastmcp = "2.12.5"
httpx = "^0.28.1"
jinja2 = "^3.1.6"
jsonfinder = "^0.4.2"
jsonschema = "^4.23.0"
lagom = "^2.6.0"
limits = "^5.5.0"
mcp = "^1.16.0"
more-itertools = ">=10.3.0"
nano-vectordb = "^0.0.4.3"
nanoid = "^2.0.0"
networkx = { extras = ["default"], version = "^3.3" }
openai = "^1.45.0"
openapi3-parser = "1.1.21"
opentelemetry-exporter-otlp-proto-grpc = "1.37.0"
parlant-client = { git = "https://github.com/emcie-co/parlant-client-python.git", tag = "develop.1755186453" }
python = "^3.10"
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.1"
requests = "^2.32.5"
rich = "^14.0.0"
semver = "^3.0.2"
structlog = "^24.4.0"
tabulate = "^0.9.0"
tiktoken = "^0.11"
tokenizers = "^0.20"
toml = "^0.10.2"
types-aiofiles = "^24.1.0.20240626"
types-cachetools = "^6.0.0.20250525"
types-croniter = "^4.0.0.20241030"
types-jsonschema = "^4.22.0.20240610"
uvicorn = "^0.38.0"
# --- optional packages ---
anthropic = { version = "^0.60.0", optional = true }
azure-identity = { version = "^1.20.0", optional = true }
cerebras-cloud-sdk = { version = "^1.25.0", optional = true }
chromadb = { version = "^1.1.1", optional = true }
google-api-core = { version = "^2.24.2", optional = true }
google-genai = { version = "^1.36.0", optional = true }
ollama = { version = "^0.5.0", optional = true }
google-auth = { version = "^2.40.0", optional = true }
together = { version = "^1.5.26", optional = true }
torch = { version = "^2.6.0", optional = true }
transformers = { version = "^4.46.2", optional = true }
litellm = { version = "^1.61.16", optional = true }
pymongo = { version = "^4.11.1", optional = true }
fireworks-ai = { version = "^0.19.19", optional = true }
mistralai = { version = "^1.0.0", optional = true }
[tool.poetry.group.dev.dependencies]
ipython = "^8.26.0"
mypy = "^1.16.0"
pep8-naming = "^0.13.3"
pytest = "^8.0.0"
pytest-asyncio = "^0.23.5"
pytest-bdd = "^7.1.2"
pytest-cov = "^5.0.0"
pytest-tap = "^3.4"
pytest-timing = { git = "https://github.com/emcie-co/mc-spitfyre.git", subdirectory = "pytest-timing", tag = "timing_v0.1.4" }
python-dotenv = "^1.0.1"
ruff = "^0.9.1"
types-python-dateutil = "^2.8.19.20240106"
types-requests = "^2.32.0.20240712"
pytest-xdist = "^3.6.1"
[tool.poetry.extras]
chroma = ["chromadb"]
mongo = ["pymongo"]
anthropic = ["anthropic", "torch", "transformers"]
aws = ["anthropic", "transformers", "torch"]
together = ["torch", "together", "transformers"]
cerebras = ["cerebras-cloud-sdk", "torch", "transformers"]
deepseek = ["torch", "transformers"]
gemini = ["google-genai", "google-api-core", "torch"]
vertex = [
"google-genai",
"google-api-core",
"google-auth",
"torch",
"anthropic",
"transformers",
]
ollama = ["ollama"]
litellm = ["litellm", "torch", "transformers"]
azure = ["azure-identity"]
fireworks = ["fireworks-ai"]
mistral = ["mistralai"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]