LLM-powered Telegram bot (OpenAI + Anthropic)
Project description
TeLLMgramBot
The basic goal of this project is to create a bridge between a Telegram Bot and a Large Language Model (LLM), supporting both OpenAI's GPT models and Anthropic's Claude models.
- To use this library, you must have a Telegram account with a user name, not just a phone number. If you don't have one, create one online.
- If added to a Telegram group, the bot must be administrator in order to respond to a user calling out its name, initials, or nickname.
Telegram Bot + LLM Encapsulation
- The Telegram interface handles special commands, especially on some basic "chatty" prompts and responses that don't require LLM, like "Hello".
- The more dynamic conversation gets handed off to the LLM to manage prompts and responses, and Telegram acts as the interaction broker.
- Pass the URL in [square brackets] and mention how the bot should interpret it.
- Example: "What do you think of this article? [https://some_site/article]"
- This uses a separate model (configurable via
url_model) to support more URL content with its higher token limit.
- Tokens are used to measure the length of all conversation messages between the Telegram bot assistant and the user. This is useful to:
- Ensure the length does not go over the model limit. If it does, prune oldest messages to fit within the limit.
- Remember past conversations when restarting: loads the user's full history across all chats (private and groups) plus all other participants' messages in the current chat, up to 50% of the token budget. This eliminates amnesia when users switch between contexts.
- Users can manage privacy via two commands:
/forget— In private chats, clears the full conversation (including bot replies). In group chats, removes only your messages; other participants' messages remain./private— Toggles per-user private mode (private chats only). When ON, messages are excluded from group conversation contexts, enabling selective privacy even in shared groups.
Why Telegram?
Using Telegram as the interface not only solves "exposing" the interface, but gives you boatloads of interactivity over a standard Command Line interface, or trying to create a website with input boxes and submit buttons to try to handle everything:
- Telegram already lets you paste in verbose, multiline messages.
- Telegram already lets you paste in pictures, videos, links, etc.
- Telegram already lets you react with emojis, stickers, etc.
Supported LLM Providers
TeLLMgramBot selects the LLM provider automatically based on the model name:
| Model prefix | Provider | Example models |
|---|---|---|
gpt- |
OpenAI | gpt-4o, gpt-4o-mini, gpt-5-mini |
claude- |
Anthropic | claude-sonnet-4-6, claude-haiku-4-5 |
Simply set chat_model (and optionally url_model) in your config.yaml to any supported model and supply the corresponding API key — no other changes needed.
Directories
When initializing TeLLMgramBot, the following directories get created:
configs- Contains bot configuration files.config.yaml(can be a different name)- This file sets main bot parameters like naming and the LLM models to use.
chat_model— the model used for normal conversation (e.g.gpt-5-miniorclaude-sonnet-4-6).url_model— the model used to read and summarize URL content, can differ fromchat_model.- An empty
token_limitwill use the maximum tokens supported by thechat_model.
models.yaml- Contains token size parameters for all supported models.
- On first run, GPT and Claude model families are pre-populated. Additional models can be added manually.
prompts- Contains prompt files for how the bot interacts with any user.test_personality.prmpt(can be a different name)- A sample prompt file defining the bot's personality: generic, helpful, and multi-provider-aware.
- The prompt emphasizes the bot's ability to fetch and analyze URLs passed in square brackets
[]. - The user can create more prompt files as needed for different personalities.
url_analysis.prmpt- Prompt template used to analyze URL content passed in brackets
[].
- Prompt template used to analyze URL content passed in brackets
errorlogs- Contains a
tellmgrambot_error.logfile to investigate if there are problems during the interaction. - User will also get notified to contact the owner.
- Contains a
data- Contains
conversations.db— a SQLite database storing all conversations between the bot and users across all chats. - When a user messages in any chat, their full history is available for context: private messages appear in group contexts, group messages appear in private contexts. This creates seamless cross-context awareness.
- Users can manage their context via
/forget(private chat: clears full conversation; group chat: removes only your messages) or/private(toggles per-user privacy for group contexts).
- Contains
Environment Variables
TeLLMgramBot also creates or utilizes the following environment variables that can be pre-loaded, especially in containerized environments like Home Assistant with different persistent storage locations:
TELLMGRAMBOT_CONFIGS_PATH— Directory containingconfig.yamlandmodels.yamlTELLMGRAMBOT_PROMPTS_PATH— Directory containing prompt filesTELLMGRAMBOT_ERRORLOGS_PATH— Directory for error logsTELLMGRAMBOT_DATA_PATH— Directory containingconversations.db(e.g./data). Defaults todata/in the execution directory.
If none are defined, all paths default to subdirectories of the execution directory (the directory containing the entry-point script).
API Keys
TeLLMgramBot supports the following API keys. Each can be supplied via environment variable or .key file:
- OpenAI — required when using a
gpt-*model. Missing: chat and URL analysis disabled. - Anthropic — required when using a
claude-*model. Missing: chat and URL analysis disabled. - Telegram — always required; available through BotFather. Missing: bot will not start.
- VirusTotal — optional; performs safety checks on URLs. Missing: URL analysis disabled.
If a provider API key matching your configured model is missing, the bot will start but disable chat and URL analysis features. A startup summary shows which features are enabled.
Environment Variables
TeLLMgramBot uses the following environment variables for API keys:
TELLMGRAMBOT_OPENAI_API_KEY(OpenAI models)TELLMGRAMBOT_ANTHROPIC_API_KEY(Anthropic models)TELLMGRAMBOT_TELEGRAM_API_KEYTELLMGRAMBOT_VIRUSTOTAL_API_KEY
During spin-up time, a user can call out os.environ[env_var] to set those variables, like the following example:
my_keys = Some_Vault_Fetch_Function()
os.environ['TELLMGRAMBOT_OPENAI_API_KEY'] = my_keys['OpenAIKey']
os.environ['TELLMGRAMBOT_ANTHROPIC_API_KEY'] = my_keys['AnthropicKey']
os.environ['TELLMGRAMBOT_TELEGRAM_API_KEY'] = my_keys['BotFatherToken']
os.environ['TELLMGRAMBOT_VIRUSTOTAL_API_KEY'] = my_keys['VirusTotalToken']
This means the user can implement whatever key vault they want to fetch the keys at runtime, without needing files stored in the directory.
API Key Files
By default, API key files are created in the execution directory (or the directory specified by TELLMGRAMBOT_KEYS_PATH for legacy deployments):
openai.key— OpenAI API key for GPT modelsanthropic.key— Anthropic API key for Claude modelstelegram.key— Telegram Bot API keyvirustotal.key— VirusTotal API key for URL safety checks
Each file with the associated API key will update its respective environment variable if not defined. Missing provider keys (OpenAI or Anthropic) will disable chat and URL analysis but allow the bot to start. Missing VirusTotal keys will disable URL analysis.
Bot Setup
This library includes an example script test_local.py, which uses files from the folders configs and prompts for TeLLMgramBot to process.
- Ensure the previous sections are followed with the proper API keys and your Telegram bot set.
- Install this library via PIP (
pip install TeLLMgramBot) and then import into your project. - Instantiate the bot by passing in various configuration pieces needed below.
Note the Telegram bot's full name and username auto-populate before startup.
telegram_bot = TeLLMgramBot.TelegramBot( bot_owner = <Bot owner's Telegram username>, bot_nickname = <Bot nickname like 'Botty'>, bot_initials = <Bot initials like 'FB'>, chat_model = <Conversation model like 'gpt-4o-mini' or 'claude-sonnet-4-6'>, url_model = <URL analysis model like 'gpt-4o' or 'claude-haiku-4-5'>, token_limit = <Maximum token count set, by default chat_model max>, persona_temp = <LLM factual to creative value [0-2], by default 1.0>, persona_prompt = <System prompt summarizing bot personality> ) - Turn on TeLLMgramBot by calling:
Once you seetelegram_bot.start_polling()TeLLMgramBot polling..., the bot is online in Telegram. - Converse! Type
/helpfor all available commands.
Resources
- GitHub repository python-telegram-bot has guides to create a Telegram bot.
- For more information on OpenAI models and token limits:
- For more information on Anthropic Claude models:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tellmgrambot-3.0.3.tar.gz.
File metadata
- Download URL: tellmgrambot-3.0.3.tar.gz
- Upload date:
- Size: 33.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad82913b89ad0bb5998871f07ab5774a092c3292a4c036c4b86655ab66a5f70b
|
|
| MD5 |
b02a6ae9130f096b95dd90ec092e0961
|
|
| BLAKE2b-256 |
4dde6c28fca0fae9aebc58c0f86bfd3d55eb3869a416a59078ce65883b3cbaea
|
File details
Details for the file tellmgrambot-3.0.3-py3-none-any.whl.
File metadata
- Download URL: tellmgrambot-3.0.3-py3-none-any.whl
- Upload date:
- Size: 35.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faf29c144d8784ac9713d441fc94e89a43683349e03e8b39bb8cb1637a19f31c
|
|
| MD5 |
620461d7cf72292955795ad134133078
|
|
| BLAKE2b-256 |
2c54bd9c399424bb4beed27e883a4de8c5ce0fcf6960e9a2206c69c3afa8b891
|