├── .env.example ├── .gitignore ├── .sonarcloud.properties ├── Dockerfile ├── LICENSE ├── LOG.md ├── README.md ├── bot ├── __init__.py ├── __main__.py ├── functions │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ └── add_your_functions_here.txt │ └── openai_front │ │ ├── __init__.py │ │ ├── here_functions_formatted_for_gpt.txt │ │ ├── phone_specs.py │ │ ├── weather.py │ │ └── web_search.py └── src │ ├── __init__.py │ ├── apis │ ├── __init__.py │ ├── duckduckgo.py │ ├── imagine.py │ ├── opengpt │ │ ├── __init__.py │ │ └── evagpt4.py │ ├── smart_gsm.py │ ├── stablehorde.py │ └── wttr.py │ ├── handlers │ ├── __init__.py │ ├── callbacks │ │ ├── imagine.py │ │ └── stablehorde.py │ ├── commands │ │ ├── __init__.py │ │ ├── api.py │ │ ├── cancel.py │ │ ├── chat_mode.py │ │ ├── help.py │ │ ├── img.py │ │ ├── imodel.py │ │ ├── iratio.py │ │ ├── istyle.py │ │ ├── lang.py │ │ ├── model.py │ │ ├── new.py │ │ ├── props.py │ │ ├── reset.py │ │ ├── retry.py │ │ ├── search.py │ │ ├── start.py │ │ └── status.py │ ├── document.py │ ├── error.py │ ├── menu.py │ ├── message.py │ ├── ocr_image.py │ ├── semaphore.py │ ├── timeout.py │ ├── url.py │ └── voice.py │ ├── start.py │ ├── tasks │ ├── __init__.py │ ├── apis_chat.py │ ├── apis_check_idler.py │ ├── apis_image.py │ └── cache.py │ └── utils │ ├── __init__.py │ ├── checks │ ├── __init__.py │ ├── c_bot_mentioned.py │ ├── c_callback.py │ ├── c_chat.py │ ├── c_lang.py │ ├── c_message.py │ ├── c_message_not_answered_yet.py │ └── c_parameters.py │ ├── config.py │ ├── constants.py │ ├── database.py │ ├── gen_utils │ ├── __init__.py │ ├── make_completion.py │ ├── make_image.py │ ├── make_transcription.py │ ├── middleware.py │ ├── openai │ │ ├── __init__.py │ │ ├── openai_completion.py │ │ ├── openai_functions.py │ │ └── openai_functions_extraction.py │ └── phase.py │ ├── misc.py │ ├── preprocess │ ├── __init__.py │ ├── count_tokens.py │ ├── make_messages.py │ ├── make_prompt.py │ ├── parse_headers.py │ ├── remove_words.py │ └── tokenizer.py │ └── proxies.py ├── config ├── api.example.json ├── chat_mode.example.json ├── model.example.json └── openai_completion_options.example.json ├── docker-compose.example.yml ├── docker-compose.no-mongodb.yml ├── docs ├── readme │ ├── ar.md │ ├── de.md │ ├── en.md │ ├── es.md │ ├── fr.md │ ├── it.md │ ├── jp.md │ ├── nl.md │ ├── pt.md │ ├── ru.md │ └── zh.md └── variables │ ├── ar.md │ ├── de.md │ ├── en.md │ ├── es.md │ ├── fr.md │ ├── it.md │ ├── jp.md │ ├── nl.md │ ├── pt.md │ ├── ru.md │ └── zh.md ├── locales ├── lang.ar.json ├── lang.de.json ├── lang.en.json ├── lang.es.json ├── lang.fr.json ├── lang.it.json ├── lang.jp.json ├── lang.nl.json ├── lang.pt.json ├── lang.ru.json ├── lang.zh.json └── props.json ├── requirements.txt └── static └── help_group_chat.mp4 /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- 1 | sonar.python.version=3.11.3 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/LICENSE -------------------------------------------------------------------------------- /LOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/LOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/functions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/functions/backends/add_your_functions_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/functions/backends/add_your_functions_here.txt -------------------------------------------------------------------------------- /bot/functions/openai_front/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/functions/openai_front/here_functions_formatted_for_gpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/functions/openai_front/here_functions_formatted_for_gpt.txt -------------------------------------------------------------------------------- /bot/functions/openai_front/phone_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/functions/openai_front/phone_specs.py -------------------------------------------------------------------------------- /bot/functions/openai_front/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/functions/openai_front/weather.py -------------------------------------------------------------------------------- /bot/functions/openai_front/web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/functions/openai_front/web_search.py -------------------------------------------------------------------------------- /bot/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/apis/duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/duckduckgo.py -------------------------------------------------------------------------------- /bot/src/apis/imagine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/imagine.py -------------------------------------------------------------------------------- /bot/src/apis/opengpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/apis/opengpt/evagpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/opengpt/evagpt4.py -------------------------------------------------------------------------------- /bot/src/apis/smart_gsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/smart_gsm.py -------------------------------------------------------------------------------- /bot/src/apis/stablehorde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/stablehorde.py -------------------------------------------------------------------------------- /bot/src/apis/wttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/apis/wttr.py -------------------------------------------------------------------------------- /bot/src/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/handlers/callbacks/imagine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/callbacks/imagine.py -------------------------------------------------------------------------------- /bot/src/handlers/callbacks/stablehorde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/callbacks/stablehorde.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/handlers/commands/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/api.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/cancel.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/chat_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/chat_mode.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/help.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/img.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/imodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/imodel.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/iratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/iratio.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/istyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/istyle.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/lang.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/model.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/new.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/props.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/reset.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/retry.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/search.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/start.py -------------------------------------------------------------------------------- /bot/src/handlers/commands/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/commands/status.py -------------------------------------------------------------------------------- /bot/src/handlers/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/document.py -------------------------------------------------------------------------------- /bot/src/handlers/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/error.py -------------------------------------------------------------------------------- /bot/src/handlers/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/menu.py -------------------------------------------------------------------------------- /bot/src/handlers/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/message.py -------------------------------------------------------------------------------- /bot/src/handlers/ocr_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/ocr_image.py -------------------------------------------------------------------------------- /bot/src/handlers/semaphore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/semaphore.py -------------------------------------------------------------------------------- /bot/src/handlers/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/timeout.py -------------------------------------------------------------------------------- /bot/src/handlers/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/url.py -------------------------------------------------------------------------------- /bot/src/handlers/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/handlers/voice.py -------------------------------------------------------------------------------- /bot/src/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/start.py -------------------------------------------------------------------------------- /bot/src/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/tasks/apis_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/tasks/apis_chat.py -------------------------------------------------------------------------------- /bot/src/tasks/apis_check_idler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/tasks/apis_check_idler.py -------------------------------------------------------------------------------- /bot/src/tasks/apis_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/tasks/apis_image.py -------------------------------------------------------------------------------- /bot/src/tasks/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/tasks/cache.py -------------------------------------------------------------------------------- /bot/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/checks/c_bot_mentioned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_bot_mentioned.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_callback.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_chat.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_lang.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_message.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_message_not_answered_yet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_message_not_answered_yet.py -------------------------------------------------------------------------------- /bot/src/utils/checks/c_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/checks/c_parameters.py -------------------------------------------------------------------------------- /bot/src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/config.py -------------------------------------------------------------------------------- /bot/src/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/constants.py -------------------------------------------------------------------------------- /bot/src/utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/database.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/make_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/make_completion.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/make_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/make_image.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/make_transcription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/make_transcription.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/middleware.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/openai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/openai/openai_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/openai/openai_completion.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/openai/openai_functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/openai/openai_functions_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/openai/openai_functions_extraction.py -------------------------------------------------------------------------------- /bot/src/utils/gen_utils/phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/gen_utils/phase.py -------------------------------------------------------------------------------- /bot/src/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/misc.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/src/utils/preprocess/count_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/count_tokens.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/make_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/make_messages.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/make_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/make_prompt.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/parse_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/parse_headers.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/remove_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/remove_words.py -------------------------------------------------------------------------------- /bot/src/utils/preprocess/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/preprocess/tokenizer.py -------------------------------------------------------------------------------- /bot/src/utils/proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/bot/src/utils/proxies.py -------------------------------------------------------------------------------- /config/api.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/config/api.example.json -------------------------------------------------------------------------------- /config/chat_mode.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/config/chat_mode.example.json -------------------------------------------------------------------------------- /config/model.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/config/model.example.json -------------------------------------------------------------------------------- /config/openai_completion_options.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/config/openai_completion_options.example.json -------------------------------------------------------------------------------- /docker-compose.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docker-compose.example.yml -------------------------------------------------------------------------------- /docker-compose.no-mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docker-compose.no-mongodb.yml -------------------------------------------------------------------------------- /docs/readme/ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/ar.md -------------------------------------------------------------------------------- /docs/readme/de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/de.md -------------------------------------------------------------------------------- /docs/readme/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/en.md -------------------------------------------------------------------------------- /docs/readme/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/es.md -------------------------------------------------------------------------------- /docs/readme/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/fr.md -------------------------------------------------------------------------------- /docs/readme/it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/it.md -------------------------------------------------------------------------------- /docs/readme/jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/jp.md -------------------------------------------------------------------------------- /docs/readme/nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/nl.md -------------------------------------------------------------------------------- /docs/readme/pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/pt.md -------------------------------------------------------------------------------- /docs/readme/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/ru.md -------------------------------------------------------------------------------- /docs/readme/zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/readme/zh.md -------------------------------------------------------------------------------- /docs/variables/ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/ar.md -------------------------------------------------------------------------------- /docs/variables/de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/de.md -------------------------------------------------------------------------------- /docs/variables/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/en.md -------------------------------------------------------------------------------- /docs/variables/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/es.md -------------------------------------------------------------------------------- /docs/variables/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/fr.md -------------------------------------------------------------------------------- /docs/variables/it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/it.md -------------------------------------------------------------------------------- /docs/variables/jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/jp.md -------------------------------------------------------------------------------- /docs/variables/nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/nl.md -------------------------------------------------------------------------------- /docs/variables/pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/pt.md -------------------------------------------------------------------------------- /docs/variables/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/ru.md -------------------------------------------------------------------------------- /docs/variables/zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/docs/variables/zh.md -------------------------------------------------------------------------------- /locales/lang.ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.ar.json -------------------------------------------------------------------------------- /locales/lang.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.de.json -------------------------------------------------------------------------------- /locales/lang.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.en.json -------------------------------------------------------------------------------- /locales/lang.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.es.json -------------------------------------------------------------------------------- /locales/lang.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.fr.json -------------------------------------------------------------------------------- /locales/lang.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.it.json -------------------------------------------------------------------------------- /locales/lang.jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.jp.json -------------------------------------------------------------------------------- /locales/lang.nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.nl.json -------------------------------------------------------------------------------- /locales/lang.pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.pt.json -------------------------------------------------------------------------------- /locales/lang.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.ru.json -------------------------------------------------------------------------------- /locales/lang.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/lang.zh.json -------------------------------------------------------------------------------- /locales/props.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/locales/props.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/help_group_chat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyelmismo/chatgpTG/HEAD/static/help_group_chat.mp4 --------------------------------------------------------------------------------