From fec2c550ef6f6338a1ba5e62a5c2d806ae4b94dc Mon Sep 17 00:00:00 2001 From: Josh XT Date: Mon, 8 May 2023 08:25:27 -0400 Subject: [PATCH] Update version, fix dockerfile --- Dockerfile | 4 ++-- app.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8aaabaca8843..742c0cea0367 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ VOLUME /app/.cache COPY --chown=flaskuser:flaskgroup . . RUN pip install -r requirements.txt && \ - pip install hnswlib + pip install hnswlib fastapi uvicorn EXPOSE 7437 -ENTRYPOINT ["python", "/app/app.py"] +ENTRYPOINT ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7437"] diff --git a/app.py b/app.py index 8a4be7ad5e95..982849887a6d 100644 --- a/app.py +++ b/app.py @@ -16,7 +16,7 @@ app = FastAPI( title="Agent-LLM", description="Agent-LLM is an Artificial Intelligence Automation platform for creating and managing AI agents.", - version="1.1.8-alpha", + version="v1.1.9-alpha", ) agent_threads = {} agent_stop_events = {}