Spaces:
Sleeping
Sleeping
File size: 296 Bytes
22369d8 4c1a85d 22369d8 4c1a85d 56f55e9 4c1a85d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Entrypoint for openenv-core deployment. Delegates to dataqa_env.server.app."""
from dataqa_env.server.app import app # noqa: F401
def main():
"""Start the environment server."""
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":
main()
|