Spaces:
Build error
Build error
[tool.poetry] | |
name = "backend" | |
version = "0.3.0" | |
description = "" | |
authors = ["xKhronoz"] | |
readme = "README.md" | |
packages = [{ include = "backend" }] | |
[tool.poetry.dependencies] | |
python = "^3.11,<3.12" | |
fastapi = "^0.109.1" | |
uvicorn = { extras = ["standard"], version = "^0.23.2" } | |
pypdf = "^4.3.0" | |
python-dotenv = "^1.0.0" | |
llama-cpp-python = "^0.2.52" | |
transformers = "^4.38.1" | |
docx2txt = "^0.8" | |
doc2docx = "^0.2.4" | |
supabase = "^2.4.0" | |
pyjwt = "^2.8.0" | |
vecs = "^0.4.3" | |
python-multipart = "^0.0.9" | |
asyncpg = "^0.29.0" | |
llama-index = "^0.10.55" | |
llama-index-vector-stores-supabase = "^0.1.5" | |
llama-index-llms-llama-cpp = "^0.1.4" | |
[tool.poetry.group.dev] | |
optional = true | |
[tool.poetry.group.dev.dependencies] | |
# Dev Dependencies here | |
flake8 = "^7.0.0" | |
pytest = "^8.0.2" | |
# For CPU torch version: Windows and Linux | |
# NOTE: To uncomment out the following lines, should you need to use the CPU version of torch | |
# [tool.poetry.group.torch-cpu] | |
# optional = true | |
# [tool.poetry.group.torch-cpu.dependencies] | |
# torch = [ | |
# { url = "https://download.pytorch.org/whl/cpu/torch-2.1.1%2Bcpu-cp311-cp311-win_amd64.whl", markers = "sys_platform == 'win32'" }, | |
# { url = "https://download.pytorch.org/whl/cpu/torch-2.1.1%2Bcpu-cp311-cp311-linux_x86_64.whl", markers = "sys_platform == 'linux'" }, | |
# ] | |
# For Cuda torch version: Windows and Linux | |
[tool.poetry.group.torch-cuda] | |
optional = true | |
[tool.poetry.group.torch-cuda.dependencies] | |
torch = [ | |
{ url = "https://download.pytorch.org/whl/cu121/torch-2.1.1%2Bcu121-cp311-cp311-win_amd64.whl", markers = "sys_platform == 'win32'" }, | |
{ url = "https://download.pytorch.org/whl/cu121/torch-2.1.1%2Bcu121-cp311-cp311-linux_x86_64.whl", markers = "sys_platform == 'linux'" }, | |
] | |
[build-system] | |
requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" | |