Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +10 -11
requirements.txt
CHANGED
|
@@ -1,22 +1,21 @@
|
|
| 1 |
-
# ---- Core UI ----
|
| 2 |
-
gradio
|
|
|
|
|
|
|
| 3 |
|
| 4 |
# ---- Data & dates ----
|
| 5 |
-
pandas
|
| 6 |
-
python-dateutil
|
| 7 |
-
numpy
|
| 8 |
|
| 9 |
# ---- Fuzzy matching ----
|
| 10 |
-
rapidfuzz
|
| 11 |
|
| 12 |
# ---- Excel I/O ----
|
| 13 |
-
openpyxl
|
| 14 |
|
| 15 |
# ---- OpenAI (legacy 0.x API used in your script) ----
|
| 16 |
openai==0.28.1
|
| 17 |
|
| 18 |
# ---- Pinecone (modern client with `from pinecone import Pinecone`) ----
|
| 19 |
-
pinecone-client
|
| 20 |
-
|
| 21 |
-
# ---- Needed by gradio_client; fixes ModuleNotFoundError: websockets.asyncio
|
| 22 |
-
websockets>=12,<13
|
|
|
|
| 1 |
+
# ---- Core UI (pin to a known-good set with websockets>=12 support) ----
|
| 2 |
+
gradio==4.44.0
|
| 3 |
+
gradio_client==1.3.0
|
| 4 |
+
websockets==12.0
|
| 5 |
|
| 6 |
# ---- Data & dates ----
|
| 7 |
+
pandas==2.2.2
|
| 8 |
+
python-dateutil==2.9.0.post0
|
| 9 |
+
numpy==1.26.4
|
| 10 |
|
| 11 |
# ---- Fuzzy matching ----
|
| 12 |
+
rapidfuzz==3.9.6
|
| 13 |
|
| 14 |
# ---- Excel I/O ----
|
| 15 |
+
openpyxl==3.1.5
|
| 16 |
|
| 17 |
# ---- OpenAI (legacy 0.x API used in your script) ----
|
| 18 |
openai==0.28.1
|
| 19 |
|
| 20 |
# ---- Pinecone (modern client with `from pinecone import Pinecone`) ----
|
| 21 |
+
pinecone-client==3.2.2
|
|
|
|
|
|
|
|
|