Initial import

This commit is contained in:
2025-09-07 22:33:51 +03:00
commit 727cb2a4e3
23 changed files with 3480 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
import uvicorn
import os
def main() -> None:
port = int(os.environ.get("PORT", "7860"))
uvicorn.run("agentui.api.server:app", host="127.0.0.1", port=port, reload=False)
if __name__ == "__main__":
main()