├── .dockerignore ├── .github └── workflows │ ├── ci.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── _version.py ├── async_helper.py ├── banner.png ├── bot_handler.py ├── bot_sender.py ├── caption_command_handler.py ├── config.json ├── google_ai_module.py ├── groq_module.py ├── langs ├── bel.json ├── eng.json ├── fas.json ├── fra.json ├── ind.json ├── rus.json ├── spa.json ├── tof.json ├── ukr.json ├── vie.json └── zho.json ├── lmao_process_loop.py ├── lmao_process_loop_web.py ├── logging_handler.py ├── logo.png ├── main.py ├── messages.py ├── module_configs ├── gemini.json ├── groq.json ├── lmao_chatgpt.json ├── lmao_ms_copilot.json ├── ms_copilot.json └── ms_copilot_designer.json ├── module_wrapper_global.py ├── ms_copilot_designer_module.py ├── ms_copilot_module.py ├── queue_container_helpers.py ├── queue_handler.py ├── request_processor.py ├── request_response_container.py ├── requirements.txt ├── run.sh ├── test_doctests.py └── users_handler.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/README.md -------------------------------------------------------------------------------- /_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/_version.py -------------------------------------------------------------------------------- /async_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/async_helper.py -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/banner.png -------------------------------------------------------------------------------- /bot_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/bot_handler.py -------------------------------------------------------------------------------- /bot_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/bot_sender.py -------------------------------------------------------------------------------- /caption_command_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/caption_command_handler.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/config.json -------------------------------------------------------------------------------- /google_ai_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/google_ai_module.py -------------------------------------------------------------------------------- /groq_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/groq_module.py -------------------------------------------------------------------------------- /langs/bel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/bel.json -------------------------------------------------------------------------------- /langs/eng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/eng.json -------------------------------------------------------------------------------- /langs/fas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/fas.json -------------------------------------------------------------------------------- /langs/fra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/fra.json -------------------------------------------------------------------------------- /langs/ind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/ind.json -------------------------------------------------------------------------------- /langs/rus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/rus.json -------------------------------------------------------------------------------- /langs/spa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/spa.json -------------------------------------------------------------------------------- /langs/tof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/tof.json -------------------------------------------------------------------------------- /langs/ukr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/ukr.json -------------------------------------------------------------------------------- /langs/vie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/vie.json -------------------------------------------------------------------------------- /langs/zho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/langs/zho.json -------------------------------------------------------------------------------- /lmao_process_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/lmao_process_loop.py -------------------------------------------------------------------------------- /lmao_process_loop_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/lmao_process_loop_web.py -------------------------------------------------------------------------------- /logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/logging_handler.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/logo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/main.py -------------------------------------------------------------------------------- /messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/messages.py -------------------------------------------------------------------------------- /module_configs/gemini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/gemini.json -------------------------------------------------------------------------------- /module_configs/groq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/groq.json -------------------------------------------------------------------------------- /module_configs/lmao_chatgpt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/lmao_chatgpt.json -------------------------------------------------------------------------------- /module_configs/lmao_ms_copilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/lmao_ms_copilot.json -------------------------------------------------------------------------------- /module_configs/ms_copilot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/ms_copilot.json -------------------------------------------------------------------------------- /module_configs/ms_copilot_designer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_configs/ms_copilot_designer.json -------------------------------------------------------------------------------- /module_wrapper_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/module_wrapper_global.py -------------------------------------------------------------------------------- /ms_copilot_designer_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/ms_copilot_designer_module.py -------------------------------------------------------------------------------- /ms_copilot_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/ms_copilot_module.py -------------------------------------------------------------------------------- /queue_container_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/queue_container_helpers.py -------------------------------------------------------------------------------- /queue_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/queue_handler.py -------------------------------------------------------------------------------- /request_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/request_processor.py -------------------------------------------------------------------------------- /request_response_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/request_response_container.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/run.sh -------------------------------------------------------------------------------- /test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/test_doctests.py -------------------------------------------------------------------------------- /users_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/F33RNI/GPT-Telegramus/HEAD/users_handler.py --------------------------------------------------------------------------------