v0 of user rolled AI

This commit is contained in:
Ajay Raj 2023-03-02 13:15:03 -08:00
commit 37b5ffd674
8 changed files with 90 additions and 21 deletions

View file

@ -9,5 +9,5 @@ class BaseAgent():
async def respond(self, human_input) -> str:
raise NotImplementedError
def run(self, host="localhost", port=3001):
def run(self, host="localhost", port=3000):
uvicorn.run(self.app, host=host, port=port)