Spaces:
Sleeping
Sleeping
File size: 392 Bytes
743203e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
Quick-start entry point for the Policy-to-Logic RL Environment.
Run the server:
uv run python main.py
Or equivalently:
uv run uvicorn policy_to_logic_env.server.app:app --host 0.0.0.0 --port 7860
"""
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"policy_to_logic_env.server.app:app",
host="0.0.0.0",
port=7860,
reload=True,
)
|