-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 943 Bytes
/
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
[tool.poetry]
name = "langserve_rag"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
packages = [
{ include = "app" },
]
[tool.poetry.dependencies]
python = ">=3.11, <3.12"
uvicorn = "^0.23.2"
langserve = "0.2.2"
pydantic = "<2"
langchain-postgres = "^0.0.6"
unstructured = {extras = ["pdf"], version = "^0.14.0"}
langchain-community = "^0.2.0"
langchain = "^0.2.0"
langchain-experimental = "^0.0.59"
langchainhub = "^0.1.15"
authlib = "^1.3.0"
itsdangerous = "^2.2.0"
python-dotenv = "^1.0.1"
black = "^24.4.2"
sqlalchemy = "^2.0.30"
fastapi-nextauth-jwt = "^2.0.0"
firebase-admin = "^6.5.0"
ruff = "^0.4.8"
uuid6 = "^2024.1.12"
aiofiles = "^23.2.1"
cryptography = "^42.0.8"
psycopg2-binary = "^2.9.9"
langchain-google-genai = "^1.0.7"
[tool.poetry.group.dev.dependencies]
langchain-cli = ">=0.0.15"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"