telegram-opencode-bridge-bot 0.1.12__tar.gz → 0.1.13__tar.gz
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.
- {telegram_opencode_bridge_bot-0.1.12/telegram_opencode_bridge_bot.egg-info → telegram_opencode_bridge_bot-0.1.13}/PKG-INFO +2 -2
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/README.md +1 -1
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/pyproject.toml +1 -1
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13/telegram_opencode_bridge_bot.egg-info}/PKG-INFO +2 -2
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/.env.example +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/MANIFEST.in +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/bot.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/config.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/__init__.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/commands.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/messages.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/list_session_models.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/__init__.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/client.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/server.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/requirements.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/sessions/__init__.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/sessions/manager.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/setup.cfg +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/telegram_opencode_bridge_bot.egg-info/SOURCES.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/telegram_opencode_bridge_bot.egg-info/dependency_links.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/telegram_opencode_bridge_bot.egg-info/entry_points.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/telegram_opencode_bridge_bot.egg-info/requires.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/telegram_opencode_bridge_bot.egg-info/top_level.txt +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/__init__.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/formatting.py +0 -0
- {telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/security.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: telegram-opencode-bridge-bot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13
|
|
4
4
|
Summary: A Telegram bot that bridges messages directly to OpenCode — an AI coding agent running on your machine
|
|
5
5
|
Author-email: MaheshNagabhairava <maheshnagabhirava12345@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -58,7 +58,7 @@ A premium, feature-rich Python bot that bridges your Telegram client directly to
|
|
|
58
58
|
### Option A: Standard PyPI Installation
|
|
59
59
|
Install and run the bot wrapper directly from the terminal:
|
|
60
60
|
```bash
|
|
61
|
-
pip install telegram-opencode-bridge-bot==0.1.
|
|
61
|
+
pip install telegram-opencode-bridge-bot==0.1.13
|
|
62
62
|
telegram-opencode-bot
|
|
63
63
|
```
|
|
64
64
|
> **💡 Tip:** Use the `--env` flag anytime to reconfigure your variables:
|
|
@@ -41,7 +41,7 @@ A premium, feature-rich Python bot that bridges your Telegram client directly to
|
|
|
41
41
|
### Option A: Standard PyPI Installation
|
|
42
42
|
Install and run the bot wrapper directly from the terminal:
|
|
43
43
|
```bash
|
|
44
|
-
pip install telegram-opencode-bridge-bot==0.1.
|
|
44
|
+
pip install telegram-opencode-bridge-bot==0.1.13
|
|
45
45
|
telegram-opencode-bot
|
|
46
46
|
```
|
|
47
47
|
> **💡 Tip:** Use the `--env` flag anytime to reconfigure your variables:
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "telegram-opencode-bridge-bot"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.13"
|
|
8
8
|
description = "A Telegram bot that bridges messages directly to OpenCode — an AI coding agent running on your machine"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: telegram-opencode-bridge-bot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.13
|
|
4
4
|
Summary: A Telegram bot that bridges messages directly to OpenCode — an AI coding agent running on your machine
|
|
5
5
|
Author-email: MaheshNagabhairava <maheshnagabhirava12345@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -58,7 +58,7 @@ A premium, feature-rich Python bot that bridges your Telegram client directly to
|
|
|
58
58
|
### Option A: Standard PyPI Installation
|
|
59
59
|
Install and run the bot wrapper directly from the terminal:
|
|
60
60
|
```bash
|
|
61
|
-
pip install telegram-opencode-bridge-bot==0.1.
|
|
61
|
+
pip install telegram-opencode-bridge-bot==0.1.13
|
|
62
62
|
telegram-opencode-bot
|
|
63
63
|
```
|
|
64
64
|
> **💡 Tip:** Use the `--env` flag anytime to reconfigure your variables:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/__init__.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/commands.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/handlers/messages.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/list_session_models.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/__init__.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/client.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/opencode/server.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/requirements.txt
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/sessions/__init__.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/sessions/manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/__init__.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/formatting.py
RENAMED
|
File without changes
|
{telegram_opencode_bridge_bot-0.1.12 → telegram_opencode_bridge_bot-0.1.13}/utils/security.py
RENAMED
|
File without changes
|