Upload folder using huggingface_hub
Browse files- pyproject.toml +8 -2
- uv.lock +0 -0
pyproject.toml
CHANGED
|
@@ -8,7 +8,7 @@ version = "1.0.0"
|
|
| 8 |
description = "A RAG system with a hybrid retriever (BM25 + Dense) and a ColPali reranker."
|
| 9 |
readme = "README.md"
|
| 10 |
license = { text = "MIT" }
|
| 11 |
-
requires-python = ">=3.
|
| 12 |
authors = [
|
| 13 |
{name = "User", email = "user@example.com"},
|
| 14 |
]
|
|
@@ -37,7 +37,13 @@ dependencies = [
|
|
| 37 |
"numpy>=1.26.0",
|
| 38 |
"langchain>=0.1.16",
|
| 39 |
"langchain-core>=0.1.45",
|
| 40 |
-
"rank-bm25"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
]
|
| 42 |
|
| 43 |
[project.optional-dependencies]
|
|
|
|
| 8 |
description = "A RAG system with a hybrid retriever (BM25 + Dense) and a ColPali reranker."
|
| 9 |
readme = "README.md"
|
| 10 |
license = { text = "MIT" }
|
| 11 |
+
requires-python = ">=3.10"
|
| 12 |
authors = [
|
| 13 |
{name = "User", email = "user@example.com"},
|
| 14 |
]
|
|
|
|
| 37 |
"numpy>=1.26.0",
|
| 38 |
"langchain>=0.1.16",
|
| 39 |
"langchain-core>=0.1.45",
|
| 40 |
+
"rank-bm25",
|
| 41 |
+
"httpx",
|
| 42 |
+
"gradio-client",
|
| 43 |
+
"sentence-transformers",
|
| 44 |
+
"idna",
|
| 45 |
+
"huggingface-hub",
|
| 46 |
+
"requests",
|
| 47 |
]
|
| 48 |
|
| 49 |
[project.optional-dependencies]
|
uv.lock
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|