holy agent

This commit is contained in:
Karan Dubey
2025-10-18 19:15:41 -05:00
parent 3906192d9a
commit 43ec67ff11
18 changed files with 758 additions and 0 deletions

8
scripts/serve.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
from __future__ import annotations
import uvicorn
if __name__ == "__main__":
uvicorn.run("hpcsim.api:app", host="0.0.0.0", port=8000, reload=False)