forked from open-edge-platform/edge-ai-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 691 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 691 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
[tool.poetry]
name = "my-app"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
uvicorn = ">=0.21.0,<0.23.0"
langchain = "^0.3.9"
langchain-community = "^0.3.9"
langchain_postgres = "^0.0.13"
langchain_openai = "^0.3.5"
psycopg = { version = "3.2.3", extras = ["c"] }
asyncpg = "^0.30.0"
fastapi = "0.121.3"
opentelemetry-sdk = "1.39.1"
opentelemetry-instrumentation-fastapi = "0.60b1"
openlit = "1.36.3"
httpx = "0.27.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"