debug-env / server /app.py
hugsbun's picture
feat: complete debugging workflow with HuggingFace Inference API and OpenEnv Stage 1
2058884
Raw
History Blame Contribute Delete
261 Bytes
# Required by `openenv validate` / `openenv push`.
# All logic lives in debug_env/server/app.py.
from debug_env.server.app import app # noqa: F401
from debug_env.server.app import main as _main
def main():
_main()
if __name__ == "__main__":
main()