-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (38 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
39 lines (38 loc) · 961 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
35
36
37
38
39
[project]
name = "pyrag-kit"
version = "1.3.0"
description = "A lightweight Python implementation of Dify core RAG logic"
readme = "README.md"
authors = [{ name = "Mison", email = "1360962086@qq.com" }]
license = { text = "MIT" }
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.86.0",
"faiss-cpu>=1.13.2",
"google-genai>=1.68.0",
"httpx>=0.28.1",
"jieba>=0.42.1",
"langchain>=1.2.13",
"langchain-community>=0.4.1",
"langchain-core>=1.2.20",
"langchain-text-splitters>=1.1.1",
"numpy>=2.4.3",
"openai>=2.29.0",
"openpyxl>=3.1.5",
"prompt-toolkit>=3.0.52",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pyfiglet>=1.0.4",
"questionary>=2.1.1",
"rank-bm25>=0.2.2",
"requests>=2.32.5",
"rich>=14.3.3",
"tenacity>=9.1.4",
"tiktoken>=0.12.0",
"volcengine-python-sdk[ark]>=5.0.18",
]
[dependency-groups]
dev = [
"pyinstaller>=6.16.0",
"pytest>=9.0.2",
]