chibi-bot 1.6.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- chibi/__init__.py +0 -0
- chibi/__main__.py +343 -0
- chibi/cli.py +90 -0
- chibi/config/__init__.py +6 -0
- chibi/config/app.py +123 -0
- chibi/config/gpt.py +108 -0
- chibi/config/logging.py +15 -0
- chibi/config/telegram.py +43 -0
- chibi/config_generator.py +233 -0
- chibi/constants.py +362 -0
- chibi/exceptions.py +58 -0
- chibi/models.py +496 -0
- chibi/schemas/__init__.py +0 -0
- chibi/schemas/anthropic.py +20 -0
- chibi/schemas/app.py +54 -0
- chibi/schemas/cloudflare.py +65 -0
- chibi/schemas/mistralai.py +56 -0
- chibi/schemas/suno.py +83 -0
- chibi/service.py +135 -0
- chibi/services/bot.py +276 -0
- chibi/services/lock_manager.py +20 -0
- chibi/services/mcp/manager.py +242 -0
- chibi/services/metrics.py +54 -0
- chibi/services/providers/__init__.py +16 -0
- chibi/services/providers/alibaba.py +79 -0
- chibi/services/providers/anthropic.py +40 -0
- chibi/services/providers/cloudflare.py +98 -0
- chibi/services/providers/constants/suno.py +2 -0
- chibi/services/providers/customopenai.py +11 -0
- chibi/services/providers/deepseek.py +15 -0
- chibi/services/providers/eleven_labs.py +85 -0
- chibi/services/providers/gemini_native.py +489 -0
- chibi/services/providers/grok.py +40 -0
- chibi/services/providers/minimax.py +96 -0
- chibi/services/providers/mistralai_native.py +312 -0
- chibi/services/providers/moonshotai.py +20 -0
- chibi/services/providers/openai.py +74 -0
- chibi/services/providers/provider.py +892 -0
- chibi/services/providers/suno.py +130 -0
- chibi/services/providers/tools/__init__.py +23 -0
- chibi/services/providers/tools/cmd.py +132 -0
- chibi/services/providers/tools/common.py +127 -0
- chibi/services/providers/tools/constants.py +78 -0
- chibi/services/providers/tools/exceptions.py +1 -0
- chibi/services/providers/tools/file_editor.py +875 -0
- chibi/services/providers/tools/mcp_management.py +274 -0
- chibi/services/providers/tools/mcp_simple.py +72 -0
- chibi/services/providers/tools/media.py +451 -0
- chibi/services/providers/tools/memory.py +252 -0
- chibi/services/providers/tools/schemas.py +10 -0
- chibi/services/providers/tools/send.py +435 -0
- chibi/services/providers/tools/tool.py +163 -0
- chibi/services/providers/tools/utils.py +146 -0
- chibi/services/providers/tools/web.py +261 -0
- chibi/services/providers/utils.py +182 -0
- chibi/services/task_manager.py +93 -0
- chibi/services/user.py +269 -0
- chibi/storage/abstract.py +54 -0
- chibi/storage/database.py +86 -0
- chibi/storage/dynamodb.py +257 -0
- chibi/storage/local.py +70 -0
- chibi/storage/redis.py +91 -0
- chibi/utils/__init__.py +0 -0
- chibi/utils/app.py +249 -0
- chibi/utils/telegram.py +521 -0
- chibi_bot-1.6.0b0.dist-info/LICENSE +21 -0
- chibi_bot-1.6.0b0.dist-info/METADATA +340 -0
- chibi_bot-1.6.0b0.dist-info/RECORD +70 -0
- chibi_bot-1.6.0b0.dist-info/WHEEL +4 -0
- chibi_bot-1.6.0b0.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: chibi-bot
|
|
3
|
+
Version: 1.6.0b0
|
|
4
|
+
Summary: An asynchronous Telegram bot providing access to various LLMs (OpenAI, Gemini, Anthropic, etc.) and image generation models, featuring context management and built-in tools for web search, news retrieval, and reading web pages.
|
|
5
|
+
License: MIT
|
|
6
|
+
Author: Sergei Nagaev
|
|
7
|
+
Author-email: nagaev.sv@gmail.com
|
|
8
|
+
Requires-Python: >=3.11,<4.0
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Dist: aiocache (==0.12.3)
|
|
15
|
+
Requires-Dist: anthropic (==0.75.0)
|
|
16
|
+
Requires-Dist: boto3 (==1.42.4)
|
|
17
|
+
Requires-Dist: click (>=8.0.0)
|
|
18
|
+
Requires-Dist: dashscope (==1.25.8)
|
|
19
|
+
Requires-Dist: ddgs (==9.9.3)
|
|
20
|
+
Requires-Dist: elevenlabs (==2.25.0)
|
|
21
|
+
Requires-Dist: fake-useragent (==2.2.0)
|
|
22
|
+
Requires-Dist: google-genai (==1.53.0)
|
|
23
|
+
Requires-Dist: httpx (==0.28.1)
|
|
24
|
+
Requires-Dist: influxdb-client (>=1.49.0,<2.0.0)
|
|
25
|
+
Requires-Dist: loguru (==0.7.3)
|
|
26
|
+
Requires-Dist: mcp (==1.23.1)
|
|
27
|
+
Requires-Dist: mistralai (>=1.9.11,<2.0.0)
|
|
28
|
+
Requires-Dist: openai (==1.77.0)
|
|
29
|
+
Requires-Dist: pydantic (==2.12.5)
|
|
30
|
+
Requires-Dist: pydantic-settings (==2.12.0)
|
|
31
|
+
Requires-Dist: python-telegram-bot[job-queue,socks] (>=22.0,<23.0)
|
|
32
|
+
Requires-Dist: redis[hiredis] (==5.2.1)
|
|
33
|
+
Requires-Dist: telegramify-markdown (==0.5.2)
|
|
34
|
+
Requires-Dist: tenacity (==9.1.2)
|
|
35
|
+
Requires-Dist: trafilatura (==2.0.0)
|
|
36
|
+
Description-Content-Type: text/markdown
|
|
37
|
+
|
|
38
|
+
<h1 align="center"><img width=150 src="https://github.com/s-nagaev/chibi/raw/main/docs/logo.png" alt="Chibi Logo"></h1>
|
|
39
|
+
|
|
40
|
+
<p align="center">
|
|
41
|
+
<strong>Your Digital Companion. Not a Tool. A Partner.</strong><br/>
|
|
42
|
+
<span>Self-hosted, asynchronous Telegram bot that orchestrates multiple AI providers, tools, and sub-agents to get real work done.</span>
|
|
43
|
+
</p>
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<a href="https://github.com/s-nagaev/chibi/actions/workflows/build.yml"><img src="https://github.com/s-nagaev/chibi/actions/workflows/build.yml/badge.svg" alt="Build"></a>
|
|
47
|
+
<a href="https://www.codefactor.io/repository/github/s-nagaev/chibi"><img src="https://www.codefactor.io/repository/github/s-nagaev/chibi/badge" alt="CodeFactor"></a>
|
|
48
|
+
<a href="https://hub.docker.com/r/pysergio/chibi"><img src="https://img.shields.io/docker/pulls/pysergio/chibi" alt="Docker Pulls"></a>
|
|
49
|
+
<a href="https://hub.docker.com/r/pysergio/chibi/tags"><img src="https://img.shields.io/badge/docker%20image%20arch-arm64%20%7C%20amd64-informational" alt="Architectures"></a>
|
|
50
|
+
<a href="https://github.com/s-nagaev/chibi/blob/main/LICENSE"><img src="https://img.shields.io/github/license/s-nagaev/chibi" alt="License"></a>
|
|
51
|
+
<a href="https://chibi.bot"><img src="https://img.shields.io/badge/docs-chibi.bot-blue" alt="Documentation"></a>
|
|
52
|
+
|
|
53
|
+
<p align="center">
|
|
54
|
+
<strong>🌍 Read this in other languages:</strong><br/>
|
|
55
|
+
<a href="docs/README.es.md">Español</a> •
|
|
56
|
+
<a href="docs/README.pt-BR.md">Português (Brasil)</a> •
|
|
57
|
+
<a href="docs/README.uk.md">Українська</a> •
|
|
58
|
+
<a href="docs/README.id.md">Bahasa Indonesia</a> •
|
|
59
|
+
<a href="docs/README.tr.md">Türkçe</a> •
|
|
60
|
+
<a href="docs/README.ru.md">Русский</a> •
|
|
61
|
+
<a href="docs/README.ja.md">日本語</a> •
|
|
62
|
+
<a href="docs/README.zh-TW.md">繁體中文</a> •
|
|
63
|
+
<a href="docs/README.zh-CN.md">简体中文</a>
|
|
64
|
+
</p>
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
Chibi is built for the moment you realize you need more than “an AI tool.” You need a **partner** that can coordinate models, run work in the background, and integrate with your systems - without you babysitting prompts.
|
|
69
|
+
|
|
70
|
+
**Chibi** is an asynchronous, self-hosted **Telegram-based digital companion** that orchestrates multiple AI providers and tools to deliver outcomes: code changes, research syntheses, media generation, and operational tasks.
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Why Chibi
|
|
75
|
+
|
|
76
|
+
- **One interface (Telegram).** Mobile/desktop/web, always with you.
|
|
77
|
+
- **Provider-agnostic.** Use the best model for each task - without vendor lock-in.
|
|
78
|
+
- **Autonomous execution.** Sub-agents work in parallel; long tasks run asynchronously.
|
|
79
|
+
- **Tool-connected.** Filesystem + terminal + MCP integrations (GitHub, browser, DBs, etc.).
|
|
80
|
+
- **Self-hosted.** Your data, your keys, your rules.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Supported AI providers (and endpoints)
|
|
85
|
+
|
|
86
|
+
Chibi supports multiple providers behind a single conversation. Add one key or many - Chibi can route per task.
|
|
87
|
+
|
|
88
|
+
### LLM providers
|
|
89
|
+
|
|
90
|
+
- **OpenAI** (GPT models)
|
|
91
|
+
- **Anthropic** (Claude)
|
|
92
|
+
- **Google** (Gemini)
|
|
93
|
+
- **DeepSeek**
|
|
94
|
+
- **Alibaba Cloud** (Qwen)
|
|
95
|
+
- **xAI** (Grok)
|
|
96
|
+
- **Mistral AI**
|
|
97
|
+
- **Moonshot AI**
|
|
98
|
+
- **MiniMax**
|
|
99
|
+
- **Cloudflare Workers AI** (many open-source models)
|
|
100
|
+
|
|
101
|
+
### OpenAI-compatible endpoints (self-host / local)
|
|
102
|
+
|
|
103
|
+
- **Ollama**
|
|
104
|
+
- **vLLM**
|
|
105
|
+
- **LM Studio**
|
|
106
|
+
- **Any** OpenAI-compatible API
|
|
107
|
+
|
|
108
|
+
### Multimodal providers (optional)
|
|
109
|
+
|
|
110
|
+
- **Images:** Google (Imagen, Nano Banana), OpenAI (DALL·E), Alibaba (Qwen Image), xAI (Grok Image), Wan
|
|
111
|
+
- **Music:** Suno
|
|
112
|
+
- **Voice:** ElevenLabs, MiniMax, OpenAI (Whisper)
|
|
113
|
+
|
|
114
|
+
> Exact model availability depends on your configured provider keys and enabled features.
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## 🚀 Quick Start (pip)
|
|
119
|
+
|
|
120
|
+
Install Chibi via pip and run it as a command-line application:
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
# Install the package
|
|
124
|
+
pip install chibi
|
|
125
|
+
|
|
126
|
+
# Generate default configuration
|
|
127
|
+
chibi config
|
|
128
|
+
|
|
129
|
+
# Edit the configuration file
|
|
130
|
+
nano ~/.chibi/settings
|
|
131
|
+
# or
|
|
132
|
+
vim ~/.chibi/settings
|
|
133
|
+
|
|
134
|
+
# Start the bot
|
|
135
|
+
chibi start
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
The bot will run as a background service. Use CLI commands to manage it.
|
|
139
|
+
|
|
140
|
+
### CLI Commands
|
|
141
|
+
|
|
142
|
+
| Command | Description |
|
|
143
|
+
|---------|-------------|
|
|
144
|
+
| `chibi start` | Start the bot as a background service |
|
|
145
|
+
| `chibi stop` | Stop the running bot |
|
|
146
|
+
| `chibi restart` | Restart the bot |
|
|
147
|
+
| `chibi config` | Generate or edit configuration |
|
|
148
|
+
| `chibi logs` | View bot logs |
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## 🚀 Quick start (Docker)
|
|
153
|
+
|
|
154
|
+
Create `docker-compose.yml`:
|
|
155
|
+
|
|
156
|
+
```yaml
|
|
157
|
+
version: '3.8'
|
|
158
|
+
|
|
159
|
+
services:
|
|
160
|
+
chibi:
|
|
161
|
+
image: pysergio/chibi:latest
|
|
162
|
+
restart: unless-stopped
|
|
163
|
+
environment:
|
|
164
|
+
TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN} # Required
|
|
165
|
+
OPENAI_API_KEY: ${OPENAI_API_KEY} # Or any other provider
|
|
166
|
+
# Add more API keys as needed
|
|
167
|
+
volumes:
|
|
168
|
+
- chibi_data:/app/data
|
|
169
|
+
|
|
170
|
+
volumes:
|
|
171
|
+
chibi_data: {}
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
1) Get a bot token from [@BotFather](https://t.me/BotFather)
|
|
175
|
+
|
|
176
|
+
2) Put secrets into `.env`
|
|
177
|
+
|
|
178
|
+
3) Run:
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
docker-compose up -d
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Next:
|
|
185
|
+
- **Installation guide:** https://chibi.bot/installation
|
|
186
|
+
- **Configuration reference:** https://chibi.bot/configuration
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## 🔑 Getting API Keys
|
|
191
|
+
|
|
192
|
+
Each provider requires its own API key. Here are the direct links:
|
|
193
|
+
|
|
194
|
+
**Major Providers:**
|
|
195
|
+
- **OpenAI** (GPT, DALL·E): [platform.openai.com/api-keys](https://platform.openai.com/api-keys)
|
|
196
|
+
- **Anthropic** (Claude): [console.anthropic.com](https://console.anthropic.com/)
|
|
197
|
+
- **Google** (Gemini, Nano Banana, Imagen): [aistudio.google.com/apikey](https://aistudio.google.com/app/apikey)
|
|
198
|
+
- **DeepSeek**: [platform.deepseek.com](https://platform.deepseek.com/)
|
|
199
|
+
- **xAI** (Grok): [console.x.ai](https://console.x.ai/)
|
|
200
|
+
- **Alibaba** (Qwen, Wan): [modelstudio.console.alibabacloud.com](https://modelstudio.console.alibabacloud.com?tab=playground#/api-key)
|
|
201
|
+
- **Mistral AI**: [console.mistral.ai](https://console.mistral.ai/)
|
|
202
|
+
- **Moonshot** (Kimi): [platform.moonshot.cn](https://platform.moonshot.cn/)
|
|
203
|
+
- **MiniMax** (Voice, MiniMax-M2.x): [minimax.io](https://www.minimax.io)
|
|
204
|
+
- **Cloudflare Workers AI**: [dash.cloudflare.com/profile/api-tokens](https://dash.cloudflare.com/profile/api-tokens)
|
|
205
|
+
|
|
206
|
+
**Creative Tools:**
|
|
207
|
+
- **ElevenLabs** (Voice): [elevenlabs.io](https://elevenlabs.io/)
|
|
208
|
+
- **Suno** (Music, unofficial): [sunoapi.org](https://sunoapi.org/)
|
|
209
|
+
|
|
210
|
+
> 📖 **Full guide with setup instructions:** [chibi.bot/guides/get-api-keys](https://chibi.bot/guides/get-api-keys)
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
## Try this in the first 5 minutes
|
|
215
|
+
|
|
216
|
+
Paste these into Telegram after you deploy.
|
|
217
|
+
|
|
218
|
+
1) **Planning + execution**
|
|
219
|
+
> Ask me 3 questions to clarify my goal, then propose a plan and execute step 1.
|
|
220
|
+
|
|
221
|
+
2) **Parallel work (sub-agents)**
|
|
222
|
+
> Spawn 3 sub-agents: one to research options, one to draft a recommendation, one to list risks. Return a single decision.
|
|
223
|
+
|
|
224
|
+
3) **Agent mode (tools)**
|
|
225
|
+
> Inspect the project files and summarize what this repo does. Then propose 5 improvements and open a checklist.
|
|
226
|
+
|
|
227
|
+
4) **Background task**
|
|
228
|
+
> Start a background task: gather sources on X and deliver a synthesis in 30 minutes. Keep me updated.
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## What makes Chibi different
|
|
233
|
+
|
|
234
|
+
### 🎭 Multi-provider orchestration
|
|
235
|
+
Chibi can keep context while switching providers mid-thread, or choose the best model per step - balancing **cost**, **capability**, and **speed**.
|
|
236
|
+
|
|
237
|
+
### 🤖 Autonomous agent capabilities
|
|
238
|
+
- **Recursive delegation:** spawn sub-agents that can spawn their own sub-agents
|
|
239
|
+
- **Background processing:** long-running tasks execute asynchronously
|
|
240
|
+
- **Filesystem access:** read/write/search/organize files
|
|
241
|
+
- **Terminal execution:** run commands with LLM-moderated security
|
|
242
|
+
- **Persistent memory:** conversation history survives restarts with context management/summarization
|
|
243
|
+
|
|
244
|
+
### 🔌 Extensible via MCP (Model Context Protocol)
|
|
245
|
+
Connect Chibi to external tools and services (or build your own):
|
|
246
|
+
|
|
247
|
+
- GitHub (PRs, issues, code review)
|
|
248
|
+
- Browser automation
|
|
249
|
+
- Docker / cloud services
|
|
250
|
+
- Databases
|
|
251
|
+
- Creative tools (Blender, Figma)
|
|
252
|
+
|
|
253
|
+
If a tool can be exposed via MCP, Chibi can learn to use it.
|
|
254
|
+
|
|
255
|
+
### 🎨 Rich content generation
|
|
256
|
+
- **Images:** Nano Banana, Imagen, Qwen, Wan, DALL·E, Grok
|
|
257
|
+
- **Music:** Suno (including custom mode: style/lyrics/vocals)
|
|
258
|
+
- **Voice:** transcription + text-to-speech (ElevenLabs, MiniMax, OpenAI)
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## Use cases
|
|
263
|
+
|
|
264
|
+
**Developers**
|
|
265
|
+
```
|
|
266
|
+
You: “Run the tests and fix what’s broken. I’ll work on the frontend.”
|
|
267
|
+
Chibi: *spawns sub-agent, executes tests, analyzes failures, proposes fixes*
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
**Researchers**
|
|
271
|
+
```
|
|
272
|
+
You: “Research the latest developments in quantum computing. I need a synthesis by tomorrow.”
|
|
273
|
+
Chibi: *spawns multiple research agents, aggregates sources, delivers a report*
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
**Creators**
|
|
277
|
+
```
|
|
278
|
+
You: “Generate a cyberpunk cityscape and compose a synthwave track to match.”
|
|
279
|
+
Chibi: *generates an image, creates music, delivers both*
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
**Teams**
|
|
283
|
+
```
|
|
284
|
+
You: “Review this PR and update the documentation accordingly.”
|
|
285
|
+
Chibi: *analyzes changes, suggests improvements, updates docs via MCP*
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
## Privacy, control, and safety
|
|
291
|
+
|
|
292
|
+
- **Self-hosted:** your data stays on your infrastructure
|
|
293
|
+
- **Public Mode:** users can bring their own API keys (no shared master key required)
|
|
294
|
+
- **Access control:** whitelist users/groups/models
|
|
295
|
+
- **Storage options:** local volumes, Redis, or DynamoDB
|
|
296
|
+
- **Tool safety:** agent tools are configurable; terminal execution is moderated and can be restricted
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## Documentation
|
|
301
|
+
|
|
302
|
+
- **Start here:** https://chibi.bot
|
|
303
|
+
- Introduction & philosophy: https://chibi.bot/introduction
|
|
304
|
+
- Installation: https://chibi.bot/installation
|
|
305
|
+
- Configuration: https://chibi.bot/configuration
|
|
306
|
+
- Agent mode: https://chibi.bot/agent-mode
|
|
307
|
+
- MCP guide: https://chibi.bot/guides/mcp
|
|
308
|
+
- Support / troubleshooting: https://chibi.bot/support
|
|
309
|
+
|
|
310
|
+
---
|
|
311
|
+
|
|
312
|
+
## System requirements
|
|
313
|
+
|
|
314
|
+
- **Minimum:** Raspberry Pi 4 / AWS EC2 t4g.nano (2 vCPU, 512MB RAM)
|
|
315
|
+
- **Architectures:** `linux/amd64`, `linux/arm64`
|
|
316
|
+
- **Dependencies:** Docker (and optionally Docker Compose)
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## Contributing
|
|
321
|
+
|
|
322
|
+
- Issues: https://github.com/s-nagaev/chibi/issues
|
|
323
|
+
- PRs: https://github.com/s-nagaev/chibi/pulls
|
|
324
|
+
- Discussions: https://github.com/s-nagaev/chibi/discussions
|
|
325
|
+
|
|
326
|
+
Please read [CONTRIBUTING.md](CONTRIBUTING.md) before submitting.
|
|
327
|
+
|
|
328
|
+
---
|
|
329
|
+
|
|
330
|
+
## License
|
|
331
|
+
|
|
332
|
+
MIT - see [LICENSE](LICENSE).
|
|
333
|
+
|
|
334
|
+
---
|
|
335
|
+
|
|
336
|
+
<p align="center">
|
|
337
|
+
<strong>Ready to meet your digital companion?</strong><br/>
|
|
338
|
+
<a href="https://chibi.bot/start"><strong>Get Started →</strong></a>
|
|
339
|
+
</p>
|
|
340
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
chibi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
chibi/__main__.py,sha256=7pI6qkmBT9lqrGPDXZciluKatN-R711cJvSVuj8mXw0,13890
|
|
3
|
+
chibi/cli.py,sha256=1zpAlSb-gQX5ZtsFmhqaKjXw6ssDzhpwSfS1UekGTGo,2191
|
|
4
|
+
chibi/config/__init__.py,sha256=HJ0kG1sszjBgAtQhsnWeG8looz3w8o9SpoaSqz1YMys,259
|
|
5
|
+
chibi/config/app.py,sha256=2w_BQYm6-8eiCRmXBD3IYio3j4fBJpppDLY5fxJvhiQ,4170
|
|
6
|
+
chibi/config/gpt.py,sha256=9cj-4FS3g9njK5P2HZQhwPcA40BJJcUwoHynFGt8tS4,4720
|
|
7
|
+
chibi/config/logging.py,sha256=XbkzXD-8ZD8TM0QguiCGQWOqliUEotuQWCI6r4Nkv6U,346
|
|
8
|
+
chibi/config/telegram.py,sha256=ERwVnnBVKAnHlR00Od6S0SRxOtiJQakLkMCRP00lxrA,1507
|
|
9
|
+
chibi/config_generator.py,sha256=sQqiZlsyQFdS7q4mQeJfP3_RK0xg4kfHt65WL9dVqOI,6620
|
|
10
|
+
chibi/constants.py,sha256=oL3o8ePDohVCzp_rheOi73E0OSE7EfYnTXrC21gYkY4,18543
|
|
11
|
+
chibi/exceptions.py,sha256=Q6cwI67YQTajDrL5_M1OH5wAAgUvR2l2kDWoEgM5JYY,1369
|
|
12
|
+
chibi/models.py,sha256=gYZNw_Uwy9_GMR2Pkf0aoLjTuKpCSatSSLG4AilsCjI,18722
|
|
13
|
+
chibi/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
chibi/schemas/anthropic.py,sha256=KqIG8FrHMYXxBRQ3GGtH9qPmD7ILmgRAxWkioKvy-qU,381
|
|
15
|
+
chibi/schemas/app.py,sha256=suFcNbSEkXztpyOQdaXCCw7YWwUEy4mZdMF_Kshhd34,1339
|
|
16
|
+
chibi/schemas/cloudflare.py,sha256=1dV3kzBfc-Yb2F4f9RhfuJ-_s5mz6hbPXfOf4pG_C34,1147
|
|
17
|
+
chibi/schemas/mistralai.py,sha256=gMKz3BK8wBNuKGJddjJHv5huexXvd_TwkeCJYeq8f_g,1101
|
|
18
|
+
chibi/schemas/suno.py,sha256=Tox3u66FUAwrKaqI94jskCOwSHhF_0KoY0XZTX8EnPI,2054
|
|
19
|
+
chibi/service.py,sha256=93cgM2wozk3mKYJhYFemrq4YA7qf214zbhMpHGa3l2I,4157
|
|
20
|
+
chibi/services/bot.py,sha256=wW1ikKdlsrM39GWIy3ld_1DE_udrU7fjk0SMvl7AfOk,11096
|
|
21
|
+
chibi/services/lock_manager.py,sha256=ZVoNEvTOrtYNlSVxCSVph02-fyfCwlr3thZBCdyv-_I,660
|
|
22
|
+
chibi/services/mcp/manager.py,sha256=7-th6gjZeKTMtCJB7YPLCIkFFQoXsJGni2WOJg9n1ZA,9094
|
|
23
|
+
chibi/services/metrics.py,sha256=BuBGnx4oSWchZq7IVauh6lyrtwvHOvTp4G_y5m__uEA,2166
|
|
24
|
+
chibi/services/providers/__init__.py,sha256=ACA4LSICQNM4TbcAU2gW6fWnMyzknzjNHvLm-IsB3Ug,814
|
|
25
|
+
chibi/services/providers/alibaba.py,sha256=nIYHs8NUXc5CS0hd6Co4mnjj5adevcUjxoRp4X8B-uQ,2925
|
|
26
|
+
chibi/services/providers/anthropic.py,sha256=0M21nfvt7TqsTfrCTzXAl6oHAxzEcXZEuYe0rx_4XRY,1172
|
|
27
|
+
chibi/services/providers/cloudflare.py,sha256=f6chYiVFJ7UnBYWUmJAcpRbTtklv3IHzbcTqTsbjZoA,3425
|
|
28
|
+
chibi/services/providers/constants/suno.py,sha256=qp1OeLY-cGmu9BB51b--WqR61gZ-U1wLINLEzWjZW0E,61
|
|
29
|
+
chibi/services/providers/customopenai.py,sha256=7tIvcEWBOGkatijs82zVADBrhocNyFa2yuNr5fCAi0s,314
|
|
30
|
+
chibi/services/providers/deepseek.py,sha256=XnlFWILJA0FMsEB4AcoqaHg92XLzRpM4MrWQJD4sVyQ,453
|
|
31
|
+
chibi/services/providers/eleven_labs.py,sha256=928W6wHu3aLmfUB-IgQ9GR9bVXujtq0vEUlOMug999Q,2872
|
|
32
|
+
chibi/services/providers/gemini_native.py,sha256=JNq2NMYw-5L3yo55-F7vbhGcbBiRHNglCyFcpNGTTNc,19439
|
|
33
|
+
chibi/services/providers/grok.py,sha256=qS-zuyII6hkZU8ogAi_Qf61qIwuRlaYP92tpnhMgNtU,1400
|
|
34
|
+
chibi/services/providers/minimax.py,sha256=u_NURDGoAIqbTT0p4D8M_W7A1_2WzIo4pIqFOfyuL0o,3118
|
|
35
|
+
chibi/services/providers/mistralai_native.py,sha256=pEFL5zW5DlFdoP5MrL6ICxUMnSxorrZOEENIzl6nv9A,11998
|
|
36
|
+
chibi/services/providers/moonshotai.py,sha256=iPXgenLVa62y_y2mSGlk-CdkFXT_SK5RlCEsswuVbD8,602
|
|
37
|
+
chibi/services/providers/openai.py,sha256=fwV_27nUfHm-KFdMR-RcW-wiC15QcyM1V-CJ6lFzpHQ,2744
|
|
38
|
+
chibi/services/providers/provider.py,sha256=9HBn9W2vYo03Ib1yxihxrQzmom8FXjMwSmv5guPa2II,34218
|
|
39
|
+
chibi/services/providers/suno.py,sha256=CJ8C1AJEtFtIqE2ogeZwxquvHVunG7friBwXuY1PNVc,4966
|
|
40
|
+
chibi/services/providers/tools/__init__.py,sha256=v1lanjJEghMMtttYArdm6Zhl7MGPhaf1kUaKzTXFtpY,834
|
|
41
|
+
chibi/services/providers/tools/cmd.py,sha256=75tJymsrHiv8wdGR-zaclUAk1bi09bodY9kparlYHl8,5361
|
|
42
|
+
chibi/services/providers/tools/common.py,sha256=6KK_qUm7BM_EtY4fJXNPmIuAYH5LWFSWC0Gke0FceHY,5187
|
|
43
|
+
chibi/services/providers/tools/constants.py,sha256=8QUJYuj0klpOCEC3G-jC34_pMERXy9EuD78bJekIPrw,5058
|
|
44
|
+
chibi/services/providers/tools/exceptions.py,sha256=lbGCj1yT0KUEaYfG_ggMZB1HCh0FvmptLooFR2njsLg,36
|
|
45
|
+
chibi/services/providers/tools/file_editor.py,sha256=cXyM8OIGLbTumt5oxmgYeT4R67JagcTytCObFHxF_bM,31692
|
|
46
|
+
chibi/services/providers/tools/mcp_management.py,sha256=b24bVlZI7TTLtZlk-fhqPcIcI3QFxgRzvSxlHeq5PBg,10485
|
|
47
|
+
chibi/services/providers/tools/mcp_simple.py,sha256=BYAZSm7g6HC8qUuSeMWnGG8Eb0nF1EWSuBKSBoSOVf4,2285
|
|
48
|
+
chibi/services/providers/tools/media.py,sha256=uQSwG9UKeawe3xjkOJo7lDgP7ro3Qt3CvW3goapfcz8,18353
|
|
49
|
+
chibi/services/providers/tools/memory.py,sha256=digbWggaIHXmoOSVdFMpIE_MXTiGfMyT2J340yb6uvw,9511
|
|
50
|
+
chibi/services/providers/tools/schemas.py,sha256=KhRqpqwd0C6WjD99lBhtdoW939WbTjRv-kbYbH6vns0,221
|
|
51
|
+
chibi/services/providers/tools/send.py,sha256=zGfJ5AKnVVMk-YYmcKvI-cyMChn_DgwaCqAAspyIyp8,16706
|
|
52
|
+
chibi/services/providers/tools/tool.py,sha256=FSVwuWkFcNfEEnyIaKj9nofjW-DKSEzQcysdkvw9YDk,6321
|
|
53
|
+
chibi/services/providers/tools/utils.py,sha256=9CS_CVv4oVAiVWL6MPS3gAJQzdfqwEFxDrb4NMs8PWY,4847
|
|
54
|
+
chibi/services/providers/tools/web.py,sha256=85ljldXVmRbqTgoQmwUSD__h26Qi_bfxjjH9TxYGUI4,9793
|
|
55
|
+
chibi/services/providers/utils.py,sha256=lI0EX-rz85UGsPz8cdzuMHqMbicCBVWEIVH5yeUL8fw,6901
|
|
56
|
+
chibi/services/task_manager.py,sha256=dyH5YpMbOryvWovhye_PKjE8YNGSit2Z43orxqpd7ko,3376
|
|
57
|
+
chibi/services/user.py,sha256=6SXyrtkIeh4rfV1JzsWRR7GYO27cld-4N1n6Yntp4bM,10250
|
|
58
|
+
chibi/storage/abstract.py,sha256=LytGhw83T6WcAGQj00BG6HG706NrnSGCj2YHow_YPes,1750
|
|
59
|
+
chibi/storage/database.py,sha256=a9t7dpB_oq-hsdPCvkI7Wtfu4cCXb1qXwxJVuqazIQ8,2884
|
|
60
|
+
chibi/storage/dynamodb.py,sha256=dZHSppv6uYUcZUDcDr3uTCXd0z-j5LvAq3FaaHGwc5Q,8995
|
|
61
|
+
chibi/storage/local.py,sha256=-8X_R9jSIQoeziSZ6QIhYkYZ5o_XXXVnknOqfjY8htg,2332
|
|
62
|
+
chibi/storage/redis.py,sha256=VOEINsJB0WBTa6uQqU9lJ3rLJzD7kLUCrOI9papangY,3450
|
|
63
|
+
chibi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
chibi/utils/app.py,sha256=Yb5kgN8X0OLUOTFF-mzD6IopuSYqYdgdICPS4JJ7BhU,9544
|
|
65
|
+
chibi/utils/telegram.py,sha256=ljsO_6j6_auC5tJge38wXtb_ZG63jMzJXnerOFXwjqw,18820
|
|
66
|
+
chibi_bot-1.6.0b0.dist-info/LICENSE,sha256=k48aK3n_wyK3uTYQD8tuDkYTe4qYIUuQ3xj6vkH6BB4,1070
|
|
67
|
+
chibi_bot-1.6.0b0.dist-info/METADATA,sha256=WS_kzAsKDpDVrsTtSjgDVis3UEKy55l4cPQ4fRTjFhg,11689
|
|
68
|
+
chibi_bot-1.6.0b0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
69
|
+
chibi_bot-1.6.0b0.dist-info/entry_points.txt,sha256=hpCAnrIIWYbxdkZGxcPZZfOxWGU7130VmM8r9YjfgHE,40
|
|
70
|
+
chibi_bot-1.6.0b0.dist-info/RECORD,,
|