-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 1.97 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "al1s-bot"
version = "0.1.0"
description = "支持 Telegram 与 Discord 的 AI 助手,集成 RAG、MCP、角色定制和媒体生成"
readme = "README.md"
license = "MIT"
authors = [
{name = "TexasOct", email = "aecom233@gmail.com"}
]
keywords = ["telegram", "discord", "bot", "ai", "rag", "mcp", "chatbot"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.13"
dependencies = [
"python-telegram-bot>=22.3",
"discord.py>=2.7.1,<3",
"aiohttp>=3.8.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"loguru>=0.7.0",
"beautifulsoup4>=4.12.0",
"pillow>=11.3.0",
"requests>=2.31.0",
"PicImageSearch>=3.12.9",
"pyyaml>=6.0.2",
"openai>=1.105.0",
"mcp[cli]>=1.13.1,<2",
"faiss-cpu>=1.7.4",
"numpy>=2.0.0",
"torch>=2.13.0,<2.14",
"sentence-transformers>=5.1.0",
"langchain>=0.3.0",
"langchain-community>=0.3.0",
"langchain-openai>=0.2.0",
"langgraph>=0.2.0",
"langchain-text-splitters>=0.3.0",
"tiktoken>=0.7.0",
"langchain-huggingface>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/SCU-Maker-Org/AL1S"
Repository = "https://github.com/SCU-Maker-Org/AL1S"
Issues = "https://github.com/SCU-Maker-Org/AL1S/issues"
Documentation = "https://github.com/SCU-Maker-Org/AL1S#readme"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"black>=25.1.0",
"isort>=6.0.1",
"flake8>=7.3.0",
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", marker = "sys_platform == 'linux'" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"
[tool.black]
target-version = ["py313"]
[tool.isort]
profile = "black"