FastApiAssistant #2

Merged
mongar28 merged 21 commits from FastApiAssistant into main 2024-11-07 18:23:14 -05:00
3 changed files with 1469 additions and 291 deletions
Showing only changes of commit b814fe232f - Show all commits

View File

@ -14,8 +14,6 @@ RUN poetry install --no-interaction --no-ansi --no-root
COPY ./app ./app COPY ./app ./app
RUN pip3 install -r ./app/requirements.txt
RUN poetry install --no-interaction --no-ansi RUN poetry install --no-interaction --no-ansi
EXPOSE 8080 EXPOSE 8080

1753
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,10 @@ packages = [
python = "^3.11" python = "^3.11"
uvicorn = "^0.23.2" uvicorn = "^0.23.2"
langserve = {extras = ["server"], version = ">=0.0.30"} langserve = {extras = ["server"], version = ">=0.0.30"}
pydantic = "<2" pydantic = "<3"
langchain-community = "^0.3.5"
langchain-openai = "^0.2.5"
langgraph = "^0.2.43"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]