Spaces:
Sleeping
Sleeping
| """ | |
| Script to run the Agentic Defensor API server. | |
| """ | |
| import uvicorn | |
| if __name__ == "__main__": | |
| print("Starting Agentic Defensor API server...") | |
| print("The API will be available at http://localhost:8000") | |
| print("Press Ctrl+C to stop the server") | |
| uvicorn.run("src.api.app:app", host="0.0.0.0", port=8000, reload=True) |