Spaces:
Runtime error
Runtime error
Upload pyproject.toml
Browse files- pyproject.toml +48 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "Certification_Challenge"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12,<3.13"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"accelerate>=1.3.0",
|
| 9 |
+
"arxiv>=2.2.0",
|
| 10 |
+
"beautifulsoup4>=4.13.3",
|
| 11 |
+
"chainlit>=2.5.5",
|
| 12 |
+
"datasets>=3.2.0",
|
| 13 |
+
"faiss-cpu>=1.10.0",
|
| 14 |
+
"ipykernel>=6.29.5",
|
| 15 |
+
"ipywidgets>=8.1.5",
|
| 16 |
+
"langchain>=0.3.18",
|
| 17 |
+
"langchain-cohere>=0.4.4",
|
| 18 |
+
"langchain-community>=0.3.17",
|
| 19 |
+
"langchain-core>=0.3.34",
|
| 20 |
+
"langchain-huggingface>=0.1.2",
|
| 21 |
+
"langchain-openai>=0.3.4",
|
| 22 |
+
"langchain-qdrant>=0.2.0",
|
| 23 |
+
"langchain-text-splitters>=0.3.6",
|
| 24 |
+
"langgraph>=0.4.3",
|
| 25 |
+
"libmagic>=1.0",
|
| 26 |
+
"lxml>=5.3.1",
|
| 27 |
+
"nltk==3.9.1",
|
| 28 |
+
"pyarrow>=19.0.0",
|
| 29 |
+
"pymupdf>=1.25.3",
|
| 30 |
+
"python-pptx==1.0.2",
|
| 31 |
+
"ragas>=0.2.15",
|
| 32 |
+
"sentence-transformers>=3.4.1",
|
| 33 |
+
"transformers[torch]>=4.48.3",
|
| 34 |
+
"unstructured>=0.17.2",
|
| 35 |
+
"wandb>=0.19.6",
|
| 36 |
+
"websockets>=15.0.1",
|
| 37 |
+
"requests>=2.32.0",
|
| 38 |
+
"python-dotenv==1.0.0",
|
| 39 |
+
"pytest==7.4.3",
|
| 40 |
+
"black==23.11.0",
|
| 41 |
+
"flake8==6.1.0",
|
| 42 |
+
"opencv-python==4.9.0.80",
|
| 43 |
+
# "tensorflow==2.16.1",
|
| 44 |
+
"scikit-image==0.22.0",
|
| 45 |
+
"matplotlib==3.8.4",
|
| 46 |
+
"Pillow==10.3.0",
|
| 47 |
+
"numpy==1.26.4",
|
| 48 |
+
]
|