forked from fangtianchen/algonotes_rag
29 lines
653 B
TOML
29 lines
653 B
TOML
[project]
|
|
name = "algonotes-rag"
|
|
version = "0.1.0"
|
|
description = "An implementation of Retrieval-Augmented Generation (RAG) for algorithmic notes."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"dotenv>=0.9.9",
|
|
"pydantic>=2.13.4",
|
|
"langchain>=0.3.0",
|
|
"langchain-chroma>=0.2.0",
|
|
"langchain-openai>=0.3.0",
|
|
"langchain-community>=0.3.0",
|
|
"langchain-text-splitters>=0.3.0",
|
|
"beautifulsoup4>=4.12.0",
|
|
"httpx>=0.28.1",
|
|
"rich>=15.0.0",
|
|
"mcp[cli]>=1.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
algonotes = "scripts.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["scripts*", "src*"]
|
|
|
|
[tool.uv]
|
|
package = true
|