Spaces:
Sleeping
Sleeping
File size: 688 Bytes
2b61f9d 209e402 2b61f9d 209e402 2b61f9d 209e402 2b61f9d 209e402 2b61f9d 209e402 |
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 |
[project]
name = "rag-application"
version = "0.1.0"
description = "Retrieval Augmented Generation App with FastAPI backend and React frontend"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.3",
"uvicorn>=0.25.0",
"python-multipart>=0.0.6",
"pydantic>=2.4.2",
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"numpy>=1.20.0",
"pandas>=1.3.0",
"scikit-learn>=1.0.0",
"tiktoken>=0.5.0",
"PyPDF2>=3.0.0",
"chainlit==2.5.5",
"websockets>=11.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
]
[tool.pytest]
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py310"]
|