Spaces:
Sleeping
Sleeping
File size: 336 Bytes
b840b29 | 1 2 3 4 5 6 7 8 9 10 11 | """
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) |