NetZero-Nav / server /app.py
Aryanshh
feat: Full OpenEnv spec compliance — /metadata, /schema, /health, /mcp endpoints + pyproject.toml fix + deterministic 0-1 graders + proper inference.py STDOUT
a95dc70
raw
history blame contribute delete
171 Bytes
import uvicorn
from netzero_nav.server import app
def main():
uvicorn.run("netzero_nav.server:app", host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()