WIP: Starting work on running games via websocket

First crack, mostly Claude, on running each agent as an individual
connection to the server via WebSocket.
This commit is contained in:
Tyler Marques 2025-06-19 11:53:03 -07:00
parent 78d9ed6818
commit aa0e5852e5
No known key found for this signature in database
GPG key ID: CB99EDCF41D3016F
10 changed files with 2064 additions and 855 deletions

5
bot_client/config.py Normal file
View file

@ -0,0 +1,5 @@
from pydantic_settings import BaseSettings
class Configuration(BaseSettings):
DEBUG: bool = False