AIE-RAG / pyproject.toml
mbudisic's picture
Added FastAPI for backend and kept chainlit as the frontend.
8b3bb10
raw
history blame contribute delete
424 Bytes
[project]
name = "aie5-deploypythonicrag"
version = "0.1.0"
description = "Simple Pythonic RAG App"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"chainlit==2.0.4",
"numpy==2.2.2",
"openai==1.59.9",
"pydantic==2.10.1",
"pypdf2==3.0.1",
"websockets==14.2",
"fastapi>=0.115.3,<0.116",
"uvicorn>=0.25.0,<0.26.0",
"python-multipart>=0.0.18,<0.0.19",
"httpx==0.27.0",
]