Skip to content

anlaki-py/AkiBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AkiBot (v1.0.8) - The Ultimate Telegram AI Assistant

This is a Telegram bot powered by the Gemini AI model, designed to interact with users through various media types and provide helpful responses.

Functionality

The bot is capable of:

  • Text Interaction: Engaging in conversational text-based chats, maintaining context throughout the conversation.
  • Image Understanding: Processing images sent by users, allowing for vision-based queries.
  • Document Analysis: Reading and understanding text-based documents.
  • Audio Processing: Handling audio messages and files.
  • Instagram Media Downloading: Downloading photos and videos from Instagram links.
  • YouTube to MP3 Conversion: Converting YouTube videos to MP3 audio files.
  • Webpage to Markdown Conversion: Converting webpages to Markdown format.
  • YouTube Transcript Extraction: Extracting transcripts from YouTube videos.
  • Enhanced Context Handling: Uses message replies and context to understand user's intent better.

Features

  • User Access Control: Only allows access to users specified in the configuration.
  • Chat History: Maintains chat history for each user, allowing for contextual conversations.
  • File Handling: Processes various file types, including images, documents, and audio files.
  • Instagram Downloader: Downloads Instagram posts and reels, with options to send as compressed media or files.
  • YouTube Downloader: Downloads audio from YouTube videos as MP3 files, including metadata and cover art.
  • Web to Markdown Converter: Converts webpages into markdown format for easy reading and sharing.
  • Error Handling: Includes robust error handling and retry mechanisms for network issues and API rate limits.
  • Configuration: Utilizes a configuration file for easy customization of bot settings, including allowed users, AI model, and safety settings.
  • User Logging: Logs user data including first and last seen dates, chat type, and more.
  • Config Editor: Built-in web based configuration editor to modify the bot settings and system prompts.
  • Markdown Toggle: Allows users to toggle between plain text and rendered markdown for bot responses.
  • Enhanced Reply Context: The bot can now understand and process replies to previous messages, including images, documents, and audio.
  • Improved Media Handling: Improved handling for audio and voice messages, including metadata and file sizes.
  • Token Management: Manages chat history token count to prevent exceeding API limits by removing the oldest messages.
  • Detailed Reasoning: The /think command provides detailed reasoning for the AI bot's responses.

Commands

  • /start: Starts the bot and provides a welcome message.
  • /help: Displays a list of available commands.
  • /clear: Clears the chat history for the current user.
  • /insta <url>: Downloads Instagram media from the provided URL as compressed media.
  • /instaFile <url>: Downloads Instagram media from the provided URL as uncompressed files.
  • /ytb2mp3 <url>: Downloads the audio from a YouTube video as an MP3 file.
  • /web2md <url>: Converts a webpage to a markdown file.
  • /ytb2transcript: Extracts the transcript from a YouTube video by letting user to choose the language and the transcript format (with/without timestamps)
  • /jailbreak Inject jailbreak prompt into the current chat.
  • /think <query>: Provides a detailed reasoning for the AI bot's response to the query.

    The Think command is a standalone function and not related to the main model or context and the generated responses are not saved in the context history.

Setup

  1. Recommended:

    • Recommended to use Python version 3.11
    apt update
    apt install python3.11
  2. Initial Setup:

    • Create and enter the virtual environment
    python -m venv venv
    source venv/bin/activitie
    • Install the requirements
    pip install -r requirements.txt
  3. Install ffmpeg:

    • Ensure you have ffmpeg installed on your system. This is required for YouTube to MP3 conversion.
  4. Environment Variables:

    • Set the TELEGRAM_TOKEN_KEY environment variable with your Telegram bot token.
    • Set the GEMINI_API_KEY environment variable with your Gemini API key.
  5. First Time Run:

    • Execute the run.sh script:
      ./run.sh
      This will start the bot and the configuration editor, allowing you to set up the bot's configuration. The config editor will be available at http://127.0.0.1:8080. After configuring the bot, you can close the editor.
  6. Run the Bot:

    • After the first time run, you can start the bot directly by running:
      python main.py

Note: After the first run using run.sh, you can run the bot directly with python main.py. The run.sh script is mainly for creating the initial config file.

License

This project is licensed under the MIT license.