Skip to content

Commit

Permalink
adding main
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Dec 10, 2024
1 parent 55018c6 commit 449b2db
Show file tree
Hide file tree
Showing 2 changed files with 641 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/agent_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,7 @@ def create_app() -> FastAPI:

if __name__ == "__main__":
# Configure uvicorn logging
print("in main")
logger.info("API Starting")
uvicorn.run(
"main:create_app",
Expand All @@ -627,3 +628,5 @@ def create_app() -> FastAPI:
reload=True,
workers=4,
)
else:
print("not in main")
Loading

0 comments on commit 449b2db

Please sign in to comment.