File size: 384 Bytes
ade347f 9940e16 ade347f 9940e16 ade347f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
Server Entry Point for AgentDebuggerEnv
========================================
Main entry point to start the FastAPI server for the AgentDebugger environment.
"""
import uvicorn
from env.server import app
def main():
"""Main execution function to run the FastAPI server."""
uvicorn.run(app, host="0.0.0.0", port=8000, workers=1)
if __name__ == "__main__":
main()
|