Raiff1982 commited on
Commit
366f77b
·
verified ·
1 Parent(s): 5e8243e

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -17
requirements.txt CHANGED
@@ -1,23 +1,36 @@
1
- python-dotenv
2
- openai
 
3
  torch==2.0.1
4
  tensorflow==2.13.0
5
  tensorflow-probability==0.21.0
6
- gradio
7
- gradio-client==0.10.1
8
  huggingface_hub==0.19.3
9
- pydantic
10
  typing-extensions==4.5.0
11
- datasets
12
- aiohttp
13
- cryptography
14
- faiss-cpu
15
- pyttsx3
16
- speechrecognition
17
- PyJWT
 
 
 
 
 
 
 
18
  deep-translator==1.9.3
19
- opencv-python-headless
20
- librosa
21
- tf-keras
22
- transformers>=4.36.0
23
- numpy==1.23.5
 
 
 
 
 
 
1
+ # === Locked Dependencies for Codriao ===
2
+
3
+ # Core AI & Model Tools
4
  torch==2.0.1
5
  tensorflow==2.13.0
6
  tensorflow-probability==0.21.0
7
+ transformers==4.36.2
8
+ datasets==2.16.1
9
  huggingface_hub==0.19.3
10
+ pydantic==1.10.13
11
  typing-extensions==4.5.0
12
+
13
+ # Audio & Speech
14
+ pyttsx3==2.90
15
+ SpeechRecognition==3.10.1
16
+ librosa==0.10.1
17
+ opencv-python-headless==4.9.0.80
18
+
19
+ # Cryptography & Security
20
+ cryptography==41.0.7
21
+ PyJWT==2.8.0
22
+ python-dotenv==1.0.1
23
+ aiohttp==3.9.3
24
+
25
+ # NLP & Translation
26
  deep-translator==1.9.3
27
+
28
+ # Vector Search & ML
29
+ faiss-cpu==1.7.4
30
+ numpy==1.23.5
31
+
32
+ # UI & Frontends
33
+ gradio==4.22.0
34
+ gradio-client==0.10.1
35
+
36
+ # === End Lockfile ===