Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karfly/chatgpt_telegram_bot

๐Ÿ’ฌ Telegram bot with ChatGPT, Python-based, using OpenAI's API.
https://github.com/karfly/chatgpt_telegram_bot

chat-gpt chatbot openai python telegram

Last synced: about 2 months ago
JSON representation

๐Ÿ’ฌ Telegram bot with ChatGPT, Python-based, using OpenAI's API.

Awesome Lists containing this project

README

        

# ChatGPT Telegram Bot: **GPT-4. Fast. No daily limits. Special chat modes**






We all love [chat.openai.com](https://chat.openai.com), but... It's TERRIBLY laggy, has daily limits, and is only accessible through an archaic web interface.

This repo is ChatGPT re-created as Telegram Bot. **And it works great.**

You can deploy your own bot, or use mine: [@chatgpt_karfly_bot](https://t.me/chatgpt_karfly_bot)

## Features
- Low latency replies (it usually takes about 3-5 seconds)
- No request limits
- Message streaming (watch demo)
- GPT-4 and GPT-4 Turbo support
- GPT-4 Vision support
- Group Chat support (/help_group_chat to get instructions)
- DALLE 2 (choose ๐Ÿ‘ฉโ€๐ŸŽจ Artist mode to generate images)
- Voice message recognition
- Code highlighting
- 15 special chat modes: ๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“ Assistant, ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป Code Assistant, ๐Ÿ‘ฉโ€๐ŸŽจ Artist, ๐Ÿง  Psychologist, ๐Ÿš€ Elon Musk and other. You can easily create your own chat modes by editing `config/chat_modes.yml`
- Support of [ChatGPT API](https://platform.openai.com/docs/guides/chat/introduction)
- List of allowed Telegram users
- Track $ balance spent on OpenAI API



---

## News
- *21 Apr 2023*:
- DALLE 2 support
- Group Chat support (/help_group_chat to get instructions)
- 10 new hot chat modes and updated chat mode menu with pagination: ๐Ÿ‡ฌ๐Ÿ‡ง English Tutor, ๐Ÿง  Psychologist, ๐Ÿš€ Elon Musk, ๐Ÿ“Š SQL Assistant and other.
- *24 Mar 2023*: GPT-4 support. Run `/settings` command to choose model
- *15 Mar 2023*: Added message streaming. Now you don't have to wait until the whole message is ready, it's streamed to Telegram part-by-part (watch demo)
- *9 Mar 2023*: Now you can easily create your own Chat Modes by editing `config/chat_modes.yml`
- *8 Mar 2023*: Added voice message recognition with [OpenAI Whisper API](https://openai.com/blog/introducing-chatgpt-and-whisper-apis). Record a voice message and ChatGPT will answer you!
- *2 Mar 2023*: Added support of [ChatGPT API](https://platform.openai.com/docs/guides/chat/introduction).
- *1 Aug 2023*: Added OpenAI API Base to config (useful while using OpenAI-compatible API like [LocalAI](https://github.com/go-skynet/LocalAI))
- *15 Nov 2023*: Added support of [GPT-4 Turbo](https://help.openai.com/en/articles/8555510-gpt-4-turbo)
- *2 Apt 2024*: Added [GPT-4 Vision](https://platform.openai.com/docs/guides/vision) support

## Bot commands
- `/retry` โ€“ Regenerate last bot answer
- `/new` โ€“ Start new dialog
- `/mode` โ€“ Select chat mode
- `/balance` โ€“ Show balance
- `/settings` โ€“ Show settings
- `/help` โ€“ Show help

## Setup
1. Get your [OpenAI API](https://openai.com/api/) key

2. Get your Telegram bot token from [@BotFather](https://t.me/BotFather)

3. Edit `config/config.example.yml` to set your tokens and run 2 commands below (*if you're advanced user, you can also edit* `config/config.example.env`):
```bash
mv config/config.example.yml config/config.yml
mv config/config.example.env config/config.env
```

4. ๐Ÿ”ฅ And now **run**:
```bash
docker-compose --env-file config/config.env up --build
```

## โค๏ธ Top donations
You can be in this list:

1. [LilRocco](https://t.me/LilRocco). Donation: **11000$** (!!!)

1. [Mr V](https://t.me/mr_v_v_v). Donation **250$**

1. [unexpectedsunday](https://t.me/unexpectedsunday). Donation: **150$**

1. [Sem](https://t.me/sembrestels). Donation: **100$**

1. [Miksolo](https://t.me/Miksolo). Donation: **81$**

*Message:* Thank you. Using this docker container every day! Actually created the same project but its good to see that this one is being supported often. Will continue using it! Good architecture choices made in the code ๐Ÿ’ช!

1. [Ryo](https://t.me/ryokihara). Donation: **80$**

1. [Ilias Ism](https://twitter.com/illyism). Donation: **69$**

*Message:* I wanted to thank you for your amazing code! It helped me start my own Telegram ChatGPT bot and add a bunch of cool features. I really appreciate your hard work on this project. For anyone interested in trying my bot, feel free to check it out here: [magicbuddy.chat](https://magicbuddy.chat) ๐Ÿค– Thanks again! ๐Ÿ˜Š

1. [Sebastian](https://t.me/dell1503). Donation: **55$**

1. [Alexander Zimin](https://t.me/azimin). Donation: **50$**

1. [Kbaji20](https://t.me/Kbaji20). Donation: **30$**

1. [Hans Blinken](https://t.me/hblink). Donation: **10$**

## Contributors
- Main contributor: @karfly
- [Jadve AI](https://jadve.com).

## References
1. [*Build ChatGPT from GPT-3*](https://learnprompting.org/docs/applied_prompting/build_chatgpt)