awacke1 commited on
Commit
e0b8484
Β·
verified Β·
1 Parent(s): dfdec71

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +32 -0
requirements.txt ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core Gradio for the snazzy UI 🎨
2
+ gradio>=4.0.0
3
+
4
+ # Asyncio and WebSockets for real-time log zapping ⚑
5
+ asyncio>=3.4.3
6
+ websockets>=10.0
7
+
8
+ # JSON for data juggling πŸ€Ήβ€β™‚οΈ
9
+ json>=2.0.9
10
+
11
+ # Logging to keep tabs on the chaos πŸ“œ
12
+ logging>=0.4.9.6
13
+
14
+ # Argument parsing for bossing the app around πŸ› οΈ
15
+ argparse>=1.1
16
+
17
+ # URL encoding for sneaky safe strings πŸ•΅οΈβ€β™‚οΈ
18
+ urllib3>=1.26.0
19
+
20
+ # File system fun and timestamp trickery ⏰
21
+ os>=0.5.0
22
+ pathlib>=1.0.1
23
+ datetime>=4.3
24
+
25
+ # Randomness for username roulette 🎲
26
+ random>=3.2
27
+
28
+ # Uvicorn for serving up the app hot and fresh 🍳
29
+ uvicorn>=0.15.0
30
+
31
+ # Starlette for middleware magic ✨ (comes with Gradio, but listing for clarity)
32
+ starlette>=0.27.0