-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag-chatbot"
version = "0.1.0"
description = "FastAPI RAG app with a simple frontend"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"logfire[fastapi,httpx]>=3.0.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"langchain>=0.3.0",
"langchain-google-genai>=2.0.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"langchain-core>=0.3.0",
"docx2txt>=0.8",
"pypdf",
"python-multipart",
"streamlit",
"python-dotenv",
"rank-bm25>=0.2.2",
"google-cloud-discoveryengine>=0.13.0",
]
[tool.logfire]
project_name = "intelligence-layer-chat"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*", "rag*", "src*"]