-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (30 loc) · 1.23 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
[tool.poetry]
name = "deep-thought"
version = "0.1.0"
description = "A question-answering system that uses embeddings and a language model to find the most likely answer to a question, while also providing links to sources that support the answer."
authors = ["Hunter Gerlach <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
fastapi = "^0.103.1"
langchain = "^0.0.303"
pytest = "^7.4.2"
openai = "^0.28.1"
httpx = "^0.25.0"
python-dotenv = "^1.0.0"
termcolor = "^2.3.0"
uvicorn = "^0.23.2"
sentence-transformers = "^2.2.2"
psycopg2-binary = "^2.9.7"
pgvector = "^0.2.3"
google-cloud-aiplatform = "^1.33.1"
torch = [
{url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp39-cp39-linux_x86_64.whl", markers = "python_version=='3.9'"},
{url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp310-cp310-linux_x86_64.whl", markers = "python_version=='3.10'"},
{url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp311-cp311-linux_x86_64.whl", markers = "python_version=='3.11'"}
]
pylint = "^2.17.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"