agentic-defensor / run_api.py
vichudo's picture
add first approach
b840b29
Raw
History Blame Contribute Delete
336 Bytes
"""
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)