ruby2210/rag-chatbot
0
1[project]2name = "rag-chatbot"3version = "0.1.0"4description = "RAG Chatbot for AI-Spec-Driven Book"5authors = [{name = "Developer", email = "developer@example.com"}]6requires-python = ">=3.9"7 8dependencies = [9 "asyncpg>=0.31.0",10 "beautifulsoup4>=4.14.3",11 "cohere>=5.20.1",12 "fastapi>=0.125.0",13 "httpx>=0.28.1",14 "litellm>=1.80.10",15 "markdown>=3.9",16 "psycopg2-binary>=2.9.11",17 "pydantic>=2.12.5",18 "pydantic-settings>=2.11.0",19 "pytest>=8.4.2",20 "python-dotenv>=1.2.1",21 "qdrant-client>=1.16.1",22 "sqlalchemy>=2.0.45",23 "uvicorn[standard]>=0.38.0",24]25 26[project.optional-dependencies]27dev = [28 "black>=23.0.0",29 "flake8>=6.0.0",30 "mypy>=1.0.0",31]32 33[tool.uv]34dev-dependencies = [35 "black>=23.0.0",36 "flake8>=6.0.0",37 "mypy>=1.0.0",38]39 