Create requirements.txt
Browse files- 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
|