jtdearmon commited on
Commit
c9f76c6
·
verified ·
1 Parent(s): 8464969

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +5 -7
requirements.txt CHANGED
@@ -5,21 +5,19 @@ gradio_client==1.13.1
5
  # OpenAI (legacy ChatCompletion/Embedding APIs used in your script)
6
  openai==0.28.1
7
 
8
- # Pinecone v5 client (matches: `from pinecone import Pinecone`)
9
- pinecone-client>=6.0.0
10
 
11
  # Data / graphs
12
  pandas==2.2.2
13
  numpy==1.26.4
14
  networkx==3.3
15
 
16
- # Server/runtime deps (gradio pulls most; these are safe)
17
  uvicorn==0.30.6
18
  httpx==0.27.2
19
- pydantic==2.9.2
20
-
21
- # This must be >= 0.0.18 to satisfy FastAPI/Gradio
22
  python-multipart>=0.0.18
23
 
24
- # You asked for 14+; keep it under 15 to avoid surprise breaking changes
25
  websockets>=14,<15
 
5
  # OpenAI (legacy ChatCompletion/Embedding APIs used in your script)
6
  openai==0.28.1
7
 
8
+ # Pinecone SDK (new package name; matches `from pinecone import Pinecone`)
9
+ pinecone>=6.0.0
10
 
11
  # Data / graphs
12
  pandas==2.2.2
13
  numpy==1.26.4
14
  networkx==3.3
15
 
16
+ # Server/runtime deps
17
  uvicorn==0.30.6
18
  httpx==0.27.2
19
+ pydantic==2.10.6
 
 
20
  python-multipart>=0.0.18
21
 
22
+ # Fix for "ModuleNotFoundError: No module named 'websockets.asyncio'"
23
  websockets>=14,<15