Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +15 -12
requirements.txt
CHANGED
@@ -1,18 +1,21 @@
|
|
1 |
-
#
|
2 |
-
fastapi
|
3 |
-
uvicorn
|
4 |
-
websockets
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
|
9 |
-
#
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
mistralai
|
15 |
|
|
|
16 |
httpx
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies for the Twitch Bot Streamer
|
|
|
|
|
|
|
2 |
|
3 |
+
# For Twitch chat interaction
|
4 |
+
twitchio>=2.0.0
|
5 |
|
6 |
+
# For controlling OBS via websocket
|
7 |
+
# Note: library might be imported as 'obswebsocket' in code
|
8 |
+
obs-websocket-py>=0.6.0
|
9 |
|
10 |
+
# For Pokemon battle logic and agent control
|
11 |
+
poke-env>=0.6.0
|
|
|
12 |
|
13 |
+
# Async HTTP requests (often needed by libraries)
|
14 |
httpx
|
15 |
|
16 |
+
openai
|
17 |
+
google-genai
|
18 |
+
mistralai
|
19 |
+
# Potentially needed by poke-env or other async libs
|
20 |
+
websockets
|
21 |
+
aiohttp
|