Skip to content

Commit

Permalink
Update version, fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed May 8, 2023
1 parent de3302f commit fec2c55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {}
Expand Down

0 comments on commit fec2c55

Please sign in to comment.