basyx commited on
Commit
dc88df2
·
verified ·
1 Parent(s): aabf2cc

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +55 -8
requirements.txt CHANGED
@@ -1,20 +1,67 @@
1
- faster-whisper==1.0.3
2
- moviepy==1.0.3
3
- ffmpeg-python
4
- numpy
5
- pydantic
6
  fastapi
7
  uvicorn
8
  python-multipart
 
 
 
 
9
  gradio
 
 
 
 
 
 
 
 
 
10
  pysrt
 
 
 
 
 
 
 
 
 
 
11
  yt-dlp>=2025.1.0
 
 
 
 
12
  requests
 
 
 
 
 
13
  google-api-python-client>=2.118.0
14
  google-auth>=2.29.0
15
  google-auth-oauthlib>=1.2.0
16
  google-auth-httplib2>=0.2.0
17
- httplib2
 
 
 
18
  google-generativeai>=0.7.2
19
- imageio
20
- imageio-ffmpeg
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # =========================
2
+ # CORE API
3
+ # =========================
 
 
4
  fastapi
5
  uvicorn
6
  python-multipart
7
+
8
+ # =========================
9
+ # UI
10
+ # =========================
11
  gradio
12
+
13
+ # =========================
14
+ # VIDEO PIPELINE
15
+ # =========================
16
+ faster-whisper==1.0.3
17
+ moviepy==1.0.3
18
+ ffmpeg-python
19
+ imageio
20
+ imageio-ffmpeg
21
  pysrt
22
+
23
+ # =========================
24
+ # NUMERICS / DATA
25
+ # =========================
26
+ numpy
27
+ pydantic
28
+
29
+ # =========================
30
+ # YOUTUBE / SOCIAL INGESTION
31
+ # =========================
32
  yt-dlp>=2025.1.0
33
+
34
+ # =========================
35
+ # HTTP / NETWORK
36
+ # =========================
37
  requests
38
+ httplib2
39
+
40
+ # =========================
41
+ # GOOGLE YOUTUBE + PLATFORM APIs
42
+ # =========================
43
  google-api-python-client>=2.118.0
44
  google-auth>=2.29.0
45
  google-auth-oauthlib>=1.2.0
46
  google-auth-httplib2>=0.2.0
47
+
48
+ # =========================
49
+ # GEMINI AI (REPLACEMENT FOR OPENAI)
50
+ # =========================
51
  google-generativeai>=0.7.2
52
+
53
+ # =========================
54
+ # AUTH SYSTEM (JWT + SECURITY)
55
+ # =========================
56
+ python-jose[cryptography]
57
+ passlib[bcrypt]
58
+
59
+ # =========================
60
+ # DATABASE (AUTH STORAGE)
61
+ # =========================
62
+ sqlalchemy
63
+
64
+ # =========================
65
+ # OPTIONAL STABILITY LAYER
66
+ # =========================
67
+ aiofiles