Skip to content

Python telegram bot, which utilizes the OpenAI API for implementing GPT-4 and speech-to-text functionality. The bot handles text and voice input from users, transcribes voice input to text, and generates responses using GPT-4

License

Notifications You must be signed in to change notification settings

jf3tt/chatgpt-telegram-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GPT-4 Telegram Bot

GPT-4 Telegram Bot is a simple and easy-to-use conversational AI-assistant running on GPT-4 language models. It provides the capability to interact with the bot through voice inputs by performing audio recognition on Telegram.

Features

  • Responds to user inputs in text format using OpenAI GPT-4 Language Models.
  • Voice recognition with OpenAI Whisper ASR to handle voice inputs.
  • Reset mechanism for clearing the conversation history.

Requirements

  • Python 3.x installed
  • Install necessary Python packages using the requirements.txt file.
    pip install -r requirements.txt
    

Environment Variables

  • TELEGRAM_TOKEN: Your Telegram Bot Token which can be obtained from BotFather.
  • OPENAI_TOKEN: Your OpenAI API Key, which can be found on the OpenAI Dashboard.
  • OPENAI_VERSION: OpenAI GPT version. Can be gpt-4 or gpt-3.5-turbo. Full version list can be found here

Usage

  1. Set your environment variables:

    export TELEGRAM_TOKEN=your_telegram_token
    export OPENAI_TOKEN=your_openai_token
    export OPENAI_VERSION=gpt-4
    
  2. Run the script:

    python3 gpt_telegram_bot.py
    
  3. Open the Telegram app and interact with the bot using text messages or voice inputs.

About

Python telegram bot, which utilizes the OpenAI API for implementing GPT-4 and speech-to-text functionality. The bot handles text and voice input from users, transcribes voice input to text, and generates responses using GPT-4

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published