Spaces:
Sleeping
Sleeping
File size: 971 Bytes
f54439d f27add5 f54439d f27add5 f54439d 79a7a69 f54439d f27add5 f54439d 81574a7 f54439d 3d18341 | 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 39 40 41 | [project]
name = "big-data-application"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "thng292", email = "nguyenquangthong292@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"gradio>=6.12.0",
"huggingface-hub>=1.11.0",
"llama-cpp-python>=0.3.19",
"llama-index>=0.14.20",
"llama-index-embeddings-huggingface>=0.7.0",
"llama-index-llms-llama-cpp>=0.6.0",
"numpy>=2.0.0",
"pyarrow>=24.0.0",
"python-dotenv>=1.2.2",
"torch",
"torchvision",
]
[project.scripts]
big-data-application = "big_data_application:main"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[tool.uv.workspace]
# members = ["packages/*"]
exclude = ["packages/*"]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = [{ index = "pytorch-cpu" }]
torchvision = [{ index = "pytorch-cpu" }]
|