Skip to content

Commit

Permalink
remove fast api version constraint (Chainlit#732)
Browse files Browse the repository at this point in the history
* remove fast api version constraint

* bump langchain
  • Loading branch information
willydouhard authored Feb 7, 2024
1 parent a7499fc commit 051d882
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ python = ">=3.8.1,<4.0.0"
httpx = ">=0.23.0,<0.25.0"
literalai = "0.0.103"
dataclasses_json = "^0.5.7"
# FastAPI 0.109.0 breaks socketio (alway 404)
fastapi = ">=0.100,<0.109.0"
fastapi = ">=0.100"
# Starlette >= 0.33.0 breaks socketio (alway 404)
starlette = "<0.33.0"
uvicorn = "^0.25.0"
fastapi-socketio = "^0.0.10"
aiofiles = "^23.1.0"
Expand All @@ -50,8 +51,8 @@ pyjwt = "^2.8.0"
optional = true

[tool.poetry.group.tests.dependencies]
openai = ">=1.1.0"
langchain = "^0.0.350"
openai = "^1.11.1"
langchain = "^0.1.5"
llama-index = "^0.9.15"
transformers = "^4.30.1"
matplotlib = "3.7.1"
Expand Down

0 comments on commit 051d882

Please sign in to comment.