Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- .gitignore +2 -0
- __pycache__/accounts_client.cpython-313.pyc +0 -0
- __pycache__/agents.cpython-313.pyc +0 -0
- __pycache__/database.cpython-312.pyc +0 -0
- __pycache__/market.cpython-312.pyc +0 -0
- __pycache__/mcp_params.cpython-312.pyc +0 -0
- __pycache__/templates.cpython-312.pyc +0 -0
- __pycache__/tracers.cpython-312.pyc +0 -0
- __pycache__/tracers.cpython-313.pyc +0 -0
- __pycache__/traders.cpython-313.pyc +0 -0
- __pycache__/trading_floor.cpython-313.pyc +0 -0
- __pycache__/util.cpython-313.pyc +0 -0
- requirements.txt +10 -7
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.venv
|
| 2 |
+
.idea
|
__pycache__/accounts_client.cpython-313.pyc
ADDED
|
Binary file (5.19 kB). View file
|
|
|
__pycache__/agents.cpython-313.pyc
ADDED
|
Binary file (1.41 kB). View file
|
|
|
__pycache__/database.cpython-312.pyc
ADDED
|
Binary file (5.72 kB). View file
|
|
|
__pycache__/market.cpython-312.pyc
ADDED
|
Binary file (3.9 kB). View file
|
|
|
__pycache__/mcp_params.cpython-312.pyc
ADDED
|
Binary file (1.32 kB). View file
|
|
|
__pycache__/templates.cpython-312.pyc
ADDED
|
Binary file (6.4 kB). View file
|
|
|
__pycache__/tracers.cpython-312.pyc
ADDED
|
Binary file (4.73 kB). View file
|
|
|
__pycache__/tracers.cpython-313.pyc
ADDED
|
Binary file (5.02 kB). View file
|
|
|
__pycache__/traders.cpython-313.pyc
ADDED
|
Binary file (7.92 kB). View file
|
|
|
__pycache__/trading_floor.cpython-313.pyc
ADDED
|
Binary file (2.74 kB). View file
|
|
|
__pycache__/util.cpython-313.pyc
ADDED
|
Binary file (1.32 kB). View file
|
|
|
requirements.txt
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
-
openai
|
| 2 |
openai-agents
|
| 3 |
sendgrid
|
| 4 |
-
pydantic
|
| 5 |
-
requests
|
| 6 |
playwright
|
| 7 |
-
dotenv
|
| 8 |
-
python-dotenv
|
| 9 |
-
gradio
|
| 10 |
-
polygon
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
openai~=1.99.9
|
| 2 |
openai-agents
|
| 3 |
sendgrid
|
| 4 |
+
pydantic~=2.11.3
|
| 5 |
+
requests~=2.32.3
|
| 6 |
playwright
|
| 7 |
+
dotenv~=0.9.9
|
| 8 |
+
python-dotenv~=1.0.1
|
| 9 |
+
gradio~=5.42.0
|
| 10 |
+
polygon-api-client
|
| 11 |
+
mcp~=1.13.0
|
| 12 |
+
pandas~=2.0.0
|
| 13 |
+
plotly~=6.0.1
|