-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 985 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
[tool.poetry]
name = "llm-documentation-explorer"
version = "0.1.0"
description = "For exploring documentation on dropbox using LLMs"
authors = ["Mandla Moyo <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
dropbox = "^11.36.2"
langchain = "^0.1.16"
openai = "^1.23.2"
ipykernel = "^6.29.4"
setuptools = "^69.5.1"
streamlit = "^1.33.0"
faiss-cpu = "^1.8.0"
tiktoken = "^0.6.0"
langchain-nomic = "^0.0.2"
unstructured = "^0.13.3"
markdown = "^3.6"
fastapi = "^0.110.2"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
langserve = {extras = ["all"], version = "^0.1.1"}
pydantic-settings = "^2.2.1"
sseclient-py = "^1.8.0"
isort = "^5.13.2"
tqdm = "^4.66.4"
langchain-postgres = "^0.0.3"
psycopg = {extras = ["binary", "pool"], version = "^3.1.18"}
flashrank = "0.2.4"
python-multipart = "^0.0.9"
streamlit-js-eval = "^0.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"