Spaces:
Sleeping
Sleeping
File size: 296 Bytes
c338ce7 | 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()
|