OSINT / src /osint_env /server_entry.py
siddeshwar-kagatikar
fix(rewards): never crash GRPO on malformed completions
d814291
raw
history blame contribute delete
183 Bytes
from __future__ import annotations
import os
import uvicorn
def main() -> None:
port = int(os.getenv("PORT", "7860"))
uvicorn.run("server:app", host="0.0.0.0", port=port)