Update requirements.txt
Browse files- requirements.txt +28 -27
requirements.txt
CHANGED
@@ -1,28 +1,29 @@
|
|
1 |
-
# Core AI Libraries
|
2 |
-
ollama # Replacing transformers with Ollama for local Llama 3 execution
|
3 |
-
torch
|
4 |
-
faiss-cpu>=1.7.4
|
5 |
-
numpy>=1.23.0
|
6 |
-
|
7 |
-
# Security & Utilities
|
8 |
-
cryptography>=41.0.0
|
9 |
-
jwt>=1.3.1
|
10 |
-
python-dotenv>=1.0.0
|
11 |
-
|
12 |
-
# Speech & Voice Processing
|
13 |
-
pyttsx3>=2.90
|
14 |
-
speechrecognition>=3.10.0
|
15 |
-
|
16 |
-
# Async & Web API
|
17 |
-
aiohttp>=3.9.0
|
18 |
-
fastapi>=0.110.0
|
19 |
-
uvicorn>=0.24.0
|
20 |
-
asyncio>=3.4.3
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
28 |
openai
|
|
|
1 |
+
# Core AI Libraries
|
2 |
+
ollama # Replacing transformers with Ollama for local Llama 3 execution
|
3 |
+
torch
|
4 |
+
faiss-cpu>=1.7.4
|
5 |
+
numpy>=1.23.0
|
6 |
+
|
7 |
+
# Security & Utilities
|
8 |
+
cryptography>=41.0.0
|
9 |
+
jwt>=1.3.1
|
10 |
+
python-dotenv>=1.0.0
|
11 |
+
|
12 |
+
# Speech & Voice Processing
|
13 |
+
pyttsx3>=2.90
|
14 |
+
speechrecognition>=3.10.0
|
15 |
+
|
16 |
+
# Async & Web API
|
17 |
+
aiohttp>=3.9.0
|
18 |
+
fastapi>=0.110.0
|
19 |
+
uvicorn>=0.24.0
|
20 |
+
asyncio>=3.4.3
|
21 |
+
web3
|
22 |
+
|
23 |
+
# Vector Databases & AI Memory
|
24 |
+
pinecone-client>=2.2.4
|
25 |
+
chromadb>=0.4.5
|
26 |
+
|
27 |
+
requests
|
28 |
+
azure-identity
|
29 |
openai
|