Jofthomas commited on
Commit
9026a91
·
verified ·
1 Parent(s): c5e1ae9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +15 -12
requirements.txt CHANGED
@@ -1,18 +1,21 @@
1
- # Framework and server
2
- fastapi
3
- uvicorn
4
- websockets
5
 
6
- # Pokemon Showdown environment
7
- poke-env
8
 
9
- # Dependency for poke-env
10
- aiologger
 
11
 
12
- openai
13
- google-genai
14
- mistralai
15
 
 
16
  httpx
17
 
18
- typing-extensions
 
 
 
 
 
 
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