generated from ruankie/poetry-py-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (35 loc) · 851 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 = "rag-qa"
version = "0.1.0"
description = "A containerised QA framework to ask questions to your documents."
authors = ["Ruan Pretorius"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "^1.0.0"
jupyterlab = "^4.0.10"
fastapi = "^0.109.0"
uvicorn = "^0.25.0"
langchain = "^0.1.0"
streamlit = "^1.30.0"
requests = "^2.31.0"
langchain-community = "^0.0.12"
chromadb = "^0.4.22"
bs4 = "^0.0.1"
langchainhub = "^0.1.14"
langchain-openai = "^0.0.2.post1"
sentence-transformers = "^2.2.2"
langchain-google-genai = "^0.0.6"
pypdf = "^3.17.4"
python-multipart = "^0.0.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"