Spaces:
Running
Running
Create requirements.txt
Browse files- requirements.txt +19 -0
requirements.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Framework and server
|
2 |
+
fastapi==0.103.1
|
3 |
+
uvicorn==0.23.2
|
4 |
+
websockets==11.0.3
|
5 |
+
|
6 |
+
# Pokemon Showdown environment
|
7 |
+
poke-env==0.7.0
|
8 |
+
|
9 |
+
# Dependency for poke-env
|
10 |
+
aiologger==0.7.0
|
11 |
+
|
12 |
+
# For OpenAI integration (adjust based on your actual agent implementations)
|
13 |
+
openai>=1.0.0
|
14 |
+
|
15 |
+
# For HTTP requests
|
16 |
+
httpx==0.24.1
|
17 |
+
|
18 |
+
# For typing support
|
19 |
+
typing-extensions==4.7.1
|