33 lines
654 B
TOML
33 lines
654 B
TOML
[project]
|
|
name = "intelligent-knowledge-base"
|
|
version = "0.1.0"
|
|
description = "智能知识库问答系统 - 端到端RAG解决方案"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"flask>=3.1.2",
|
|
"openai>=2.14.0",
|
|
"pydantic>=2.12.5",
|
|
"python-dotenv>=1.2.1",
|
|
"chromadb>=0.5.0",
|
|
"langchain>=0.2.0",
|
|
"langchain-community>=0.2.0",
|
|
"langchain-openai>=0.1.0",
|
|
"pypdf>=4.0.0",
|
|
"docx2txt>=0.8",
|
|
"numpy>=1.26.0",
|
|
"tqdm>=4.66.0",
|
|
"scikit-learn>=1.4.0",
|
|
"jieba>=0.42.1",
|
|
"whoosh>=2.7.4",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[tool.setuptools]
|
|
packages = []
|
|
|
|
[project.scripts]
|
|
run = "app:main"
|