Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Chatbot version/requirements_prod.txt +5 -0
- requirements.txt +12 -1
Chatbot version/requirements_prod.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Lean requirements for this app.
|
| 2 |
+
# Gradio is preinstalled by the Hugging Face Space base image.
|
| 3 |
+
openai>=1.0.0
|
| 4 |
+
rapidfuzz>=3.0.0
|
| 5 |
+
requests>=2.31.0
|
requirements.txt
CHANGED
|
@@ -1,9 +1,20 @@
|
|
| 1 |
gradio==4.44.1
|
| 2 |
-
|
|
|
|
| 3 |
pandas>=2.0.0
|
| 4 |
numpy>=1.24.0
|
|
|
|
|
|
|
| 5 |
rapidfuzz>=3.0.0
|
| 6 |
sentence-transformers>=2.2.2
|
| 7 |
faiss-cpu>=1.7.4
|
|
|
|
|
|
|
| 8 |
pymupdf>=1.23.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
openai>=1.40.0
|
|
|
|
| 1 |
gradio==4.44.1
|
| 2 |
+
|
| 3 |
+
# Core data handling
|
| 4 |
pandas>=2.0.0
|
| 5 |
numpy>=1.24.0
|
| 6 |
+
|
| 7 |
+
# Matching + embeddings (RAG-lite)
|
| 8 |
rapidfuzz>=3.0.0
|
| 9 |
sentence-transformers>=2.2.2
|
| 10 |
faiss-cpu>=1.7.4
|
| 11 |
+
|
| 12 |
+
# PDF parsing (PyMuPDF provides `fitz`)
|
| 13 |
pymupdf>=1.23.0
|
| 14 |
+
|
| 15 |
+
# Web lookups for manufacturer / datasheet links
|
| 16 |
+
requests>=2.31.0
|
| 17 |
+
beautifulsoup4>=4.12.0
|
| 18 |
+
|
| 19 |
+
# LLM calls
|
| 20 |
openai>=1.40.0
|