From 3f82eea8b6f39ff9db6f580aa05631bdbf23381a Mon Sep 17 00:00:00 2001 From: Juan Pablo Vega Date: Wed, 5 Feb 2025 17:05:00 +0100 Subject: [PATCH] chore cleanup --- services/completion/main_local.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 services/completion/main_local.py diff --git a/services/completion/main_local.py b/services/completion/main_local.py deleted file mode 100644 index 16b9f2e9c..000000000 --- a/services/completion/main_local.py +++ /dev/null @@ -1,18 +0,0 @@ -from uvicorn import run -import os - -os.environ["AGENTA_UNAUTHORIZED_EXECUTION_ALLOWED"] = "True" -os.environ["AGENTA_HOST"] = "http://host.docker.internal" - -import agenta -import _app # This will register the routes with the FastAPI application - - -if __name__ == "__main__": - run( - "agenta:app", - host="0.0.0.0", - port=8000, - reload=True, - reload_dirs=[".", "/Users/mahmoudmabrouk/agenta/code/agenta-core/agenta-cli"], - )