-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (29 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
29 lines (29 loc) · 1.01 KB
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
[project]
name = "obs-rag"
version = "0.1.0"
description = "An AI-powered Second Brain using RAG and Obsidian"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langchain>=0.3.15",
"langchain-community>=0.3.15",
"langchain-chroma>=1.1.0",
"langchain-core>=0.3.15", # 👈Listed explicitly, since it wasn't bundled with others
"langchain-google-genai>=4.2.0",
"google-genai>=1.59.0", # 👈The official underlying SDK of Google GenAI
"google-api-core>=2.10.0", # 👈Google's Provided Exceptions Module
"python-dotenv>=1.0.0",
"fastapi>=0.109.0", # 👈The API Framework
"uvicorn>=0.27.0", # 👈The Server Runner
"pydantic>=2.0.0", # 👈Explicitly listed for Safety
"langchain-pinecone>=0.2.13",
"langchain-text-splitters>=1.1.0",
"reflex>=0.8.26",
"httpx>=0.28.1",
"pinecone>=7.3.0",
"reflex-hosting-cli>=0.1.61",
"qdrant-client>=1.17.1",
"langchain-qdrant>=1.1.0",
"langchain-huggingface>=1.2.1",
"sentence-transformers>=5.3.0",
]