-
Notifications
You must be signed in to change notification settings - Fork 928
/
Copy pathpyproject.toml
84 lines (80 loc) · 1.95 KB
/
pyproject.toml
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
[project]
name = "agents-api"
version = "1.0.0"
description = "Julep's backend API"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"aiobotocore>=2.15.2",
"anyio>=4.4.0",
"arrow>=1.3.0",
"async-lru>=2.0.4",
"beartype>=0.18.5",
"en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl",
"environs>=10.3.0",
"fastapi>=0.115.4",
"fire>=0.5.0",
"google-re2>=1.1.20240702",
"gunicorn>=23.0.0",
"httpx>=0.27.0",
"jinja2schema>=0.1.4",
"jinja2>=3.1.4",
"jsonschema>=4.22.0",
"langchain-core>=0.3.14",
"larch-pickle~=1.4.3",
"litellm>=1.57.0",
"lz4>=4.3.3",
"msgpack>=1.1.0",
"numpy>=2.0.0,<2.1.0",
"pandas>=2.2.2",
"prometheus-client>=0.21.0",
"prometheus-fastapi-instrumentator>=7.0.0",
"pydantic-partial>=0.5.5",
"pydantic[email]>=2.10.2",
"python-box>=7.2.0",
"scalar-fastapi>=1.0.3",
"sentry-sdk[fastapi]>=2.13.0",
"simpleeval>=0.9.13",
"simsimd>=5.9.4",
"spacy>=3.8.2",
"sse-starlette>=2.1.3",
"temporalio[opentelemetry]>=1.8",
"tenacity>=9.0.0",
"thefuzz>=0.22.1",
"tiktoken>=0.7.0",
"uvicorn>=0.30.6",
"uvloop>=0.21.0",
"xxhash>=3.5.0",
"spacy-chunks>=0.0.2",
"uuid7>=0.1.0",
"asyncpg>=0.30.0",
"unique-namer>=1.6.1",
"langcodes>=3.5.0",
"langchain-text-splitters>=0.3.2",
"deep-translator>=1.11.4",
"markdownify>=1.0.0",
"markdown2>=2.5.3",
]
[dependency-groups]
dev = [
"datamodel-code-generator>=0.26.3",
"ipython>=8.30.0",
"ipywidgets>=8.1.5",
"julep>=1.43.1",
"jupyterlab>=4.3.1",
"pip>=24.3.1",
"poethepoet>=0.31.1",
"pyjwt>=2.10.1",
"pyright>=1.1.391",
"pytype>=2024.10.11",
"ruff>=0.9.0",
"sqlvalidator>=0.0.20",
"testcontainers[postgres,localstack]>=4.9.0",
"ward>=0.68.0b0",
"psycopg[binary]>=3.2.5", # only for use inside tests for now
]
[tool.setuptools]
py-modules = [
"agents_api",
]
extend-safe-fixes = [""]