-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
147 lines (132 loc) · 3.8 KB
/
Copy pathpyproject.toml
File metadata and controls
147 lines (132 loc) · 3.8 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
[tool.poetry]
name = "chibi-bot"
version = "1.12.0"
description = "Your Digital Companion. Self-hosted Telegram bot orchestrating multiple AI providers (OpenAI, Anthropic, Google, xAI, DeepSeek, Mistral, Alibaba, MiniMax) with autonomous agent capabilities, MCP integrations, and async task execution. Not a tool. A partner."
authors = ["Sergei Nagaev <nagaev.sv@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = [
"telegram",
"bot",
"ai",
"agent",
"llm",
"mcp",
"openai",
"anthropic",
"deepseek",
"gemini",
"ollama",
"asyncio",
"minimax",
"self-hosted",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Systems Administration",
]
packages = [{include = "chibi"}]
include = ["data/.keep", "skills"]
exclude = ["tests", "docs", "scripts", "examples", ".project", "data/*.pkl", "data/*.md", "data/old", "data/scripts"]
[tool.poetry.urls]
Homepage = "https://chibi.bot"
Repository = "https://github.com/s-nagaev/chibi"
Issues = "https://github.com/s-nagaev/chibi/issues"
Changelog = "https://github.com/s-nagaev/chibi/releases"
[tool.poetry.dependencies]
python = "^3.11"
aiocache = "0.12.3"
anthropic = "0.88.0"
apscheduler = "^3.11"
boto3 = "1.42.81"
cachetools = "^7.0.1"
click = ">=8.0.0"
dashscope = "1.25.15"
ddgs = "9.14.2"
elevenlabs = "2.34.0"
fake-useragent = "2.2.0"
google-genai = "1.62.0"
httpx = "0.28.1"
influxdb-client = "^1.49.0"
loguru = "0.7.3"
mcp = "1.26.0"
mistralai = "1.12.0"
openai = "2.17.0"
pydantic = "2.12.5"
pydantic-settings = "2.12.0"
python-telegram-bot = {extras = ["socks", "job-queue"], version = "22.7"}
redis = {extras = ["hiredis"], version = "7.1.0"}
rich = "^14.3.3"
sqlalchemy = "^2.0"
telegramify-markdown = "0.5.4"
tenacity = "9.1.4"
trafilatura = "2.0.0"
fastembed = [
{ version = "0.8.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" },
{ version = "0.8.0", markers = "sys_platform == 'linux'" },
{ version = "0.8.0", markers = "sys_platform == 'win32'" }
]
onnxruntime = [
{ version = "1.23.1", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'", optional = true },
{ version = ">=1.24.2", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" },
{ version = ">=1.24.2", markers = "sys_platform == 'linux'" },
{ version = ">=1.24.2", markers = "sys_platform == 'win32'" }
]
chromadb = "1.5.9"
uuid-utils = "0.16.0"
[tool.poetry.extras]
legacymac = ["onnxruntime"]
[tool.poetry.group.dev.dependencies]
factory-boy = "^3.3.3"
fakeredis = "^2.28.1"
freezegun = "^1.5.1"
ipython = "^9.7.0"
moto = "^5.1.4"
mypy = "^1.15.0"
pytest = "^8.3.5"
pytest-asyncio = "^1.3.0"
respx = "^0.22.0"
ruff = "^0.11.6"
types-cachetools = "^6.2.0.20251022"
vulture = "^2.14"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
files = "**/*.py"
follow_imports = "silent"
ignore_missing_imports = true
show_column_numbers = true
strict = false
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
allow_untyped_calls = true
plugins = [ "pydantic.mypy" ]
[tool.vulture]
ignore_names = ["expected_type",]
min_confidence = 80
sort_by_size = true
paths = ["."]
[tool.ruff]
line-length = 120
exclude = [
".git",
"__pycache__",
]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
chibi = "chibi.cli:main"