From 715a3f5dc7ad17e6e177b6a4048c10c2b1aa9ec9 Mon Sep 17 00:00:00 2001 From: KrishCode Date: Thu, 10 Oct 2024 17:51:59 +0530 Subject: [PATCH] Create Readme.md This enhancement aims to provide a better experience for Russian-speaking users, ensuring they can fully engage with our content and features --- docs/Id/Readme.md | 301 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 docs/Id/Readme.md diff --git a/docs/Id/Readme.md b/docs/Id/Readme.md new file mode 100644 index 000000000..6dfa842cf --- /dev/null +++ b/docs/Id/Readme.md @@ -0,0 +1,301 @@ +
+ +
+
+ + + + + + + Английский | + 简体中文 | + 繁體中文 | + 日本 | + 한국인 | + हिंदी | + नेपाली | + Deutsch | + Español | + Français | + Italiano | + Nederlands | + Português | + Việt +
+
+ +
+ + + + + + + + +### 🤖 Мощная библиотека JavaScript для ChatGPT на стороне клиента + +
+ +
+ +
+ +[![](https://img.shields.io/github/stars/KudoAI/chatgpt.js?label=Stars&color=af68ff&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/stargazers) +[![](https://img.shields.io/badge/License-MIT-green.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/blob/main/LICENSE.md) +[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.3.4&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v3.3.4/dist/chatgpt.min.js) +[![](https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Code+Quality&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge)](https://www.codefactor.io/repository/github/kudoai/chatgpt.js) +[![](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dkudoai_chatgpt.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonarcloud&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold)](https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js) +[![](https://img.shields.io/badge/Mentioned_in-Awesome-cca8c4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/sindresorhus/awesome-chatgpt#javascript) +[![](https://img.shields.io/badge/Featured_on-Product_Hunt-ff6154?logo=producthunt&logoColor=white&labelColor=464646&style=for-the-badge)](https://www.producthunt.com/posts/chatgpt-js) +![](https://img.shields.io/badge/jsDelivr_Requests-2,000,000+-2bbbd8.svg?logo=jsdelivr&logoColor=white&labelColor=464646&style=for-the-badge) + +
+ + + +
+ +## 💡 О проекте + +
+ +chatgpt.js — это мощная библиотека JavaScript, которая позволяет очень легко взаимодействовать с DOM ChatGPT. + +- Богатая функциональность +- Объектно-ориентированная +- Легкость в использовании +- Легковесная (и при этом оптимально производительная) + + + +
+ +## ⚡ Импорт библиотеки + +
+ +> **Примечание** _Чтобы всегда импортировать последнюю версию (не рекомендуется в производстве!), замените версию в URL jsDelivr на: `https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js/chatgpt.min.js`_ + +### ES11 (2020): + +```js +(async () => { + await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@3.3.4/dist/chatgpt.min.js'); + // Ваш код здесь... +})(); + +``` +### ES5 (2009): +```js +var xhr = new XMLHttpRequest(); +xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@3.3.4/dist/chatgpt.min.js'); +xhr.onload = function () { + if (xhr.status === 200) { + var chatgptJS = document.createElement('script'); + chatgptJS.textContent = xhr.responseText; + document.head.append(chatgptJS); + вашКод(); // запускает ваш код + } +}; +xhr.send(); + +function вашКод() { + // Ваш код здесь... +} +``` +### Greasemonkey: +> Примечание Чтобы использовать стартовый шаблон: kudoai/chatgpt.js-greasemonkey-starter + +```js +... +// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@3.3.4/dist/chatgpt.min.js +// ==/UserScript== + +// Ваш код здесь... +``` + Chrome: +> Примечание Чтобы использовать стартовый шаблон: kudoai/chatgpt.js-chrome-starter + +Поскольку Google не позволяет удаленный код, необходимо импортировать chatgpt.js локально: + +1. Сохраните [chatgpt.js](https://raw.githubusercontent.com/KudoAI/chatgpt.js/main/chatgpt.js) в подкаталог (`lib` в этом примере). + +2. В `manifest.json` вашего проекта (V3) добавьте `lib/chatgpt.js` в качестве веб-доступного ресурса: + ```json + "web_accessible_resources": [{ + "matches": [""], + "resources": ["lib/chatgpt.js"] + }], + ``` + +3. В скриптах, которые нуждаются в `chatgpt.js` (как в переднем, так и в фоновом режиме), импортируйте его следующим образом: + ```js + (async () => { + await import(chrome.runtime.getURL('lib/chatgpt.js')); + // Ваш код здесь... + })(); + ``` + + + +
+ +## 💾 Загрузка через npm: + +
+ +Чтобы загрузить **chatgpt.js** для локальной настройки, выполните следующую команду в корневом каталоге вашего проекта: + +```bash +npm install @kudoai/chatgpt.js + +После установки перейдите в `node_modules/@kudoai/chatgpt.js`, чтобы найти исходный код библиотеки. + + + +
+``` +## 💻 Использование + +
+ +**chatgpt.js** был написан с высокой гибкостью в виду. + +Например: + +```js +chatgpt.getLastResponse(); +chatgpt.getLastReply(); +chatgpt.response.getLast(); +chatgpt.get('reply', 'last'); + + +``` + +Каждый вызов одинаково получает последний ответ. Если вы думаете, что это сработает, вероятно, так и будет... просто введите это! + +Если нет, ознакомьтесь с расширенным [руководством пользователя](https://github.com/KudoAI/chatgpt.js/blob/v3.3.4/docs/USERGUIDE.md), или просто отправьте [проблему](https://github.com/KudoAI/chatgpt.js/issues) или [PR](https://github.com/KudoAI/chatgpt.js/pulls), и это будет интегрировано, без проблем! + + + +
+ +## 🤖 Сделано с chatgpt.js + +
+ + +https://github.com/KudoAI/chatgpt.js/assets/10906554/f53c740f-d5e0-49b6-ae02-3b3140b0f8a4 + +# + +### [AmazonGPT](https://amazongpt.kudoai.com)   + +> Добавьте ИИ в покупки на Amazon. +
[Установить](https://greasyfork.org/scripts/500663-amazongpt) / +[Читать](https://amazongpt.kudoai.com/#readme) / +[Обсудить](https://amazongpt.kudoai.com/discussions) + +### [Autoclear ChatGPT History](https://autoclearchatgpt.com)   + +> Автоочистка истории запросов ChatGPT для максимальной конфиденциальности. +
[Установить](https://docs.autoclearchatgpt.com/#-installation) / +[Читать](https://docs.autoclearchatgpt.com/#readme) / +[Обсудить](https://github.autoclearchatgpt.com/discussions) + +### [BraveGPT](https://bravegpt.com)   + + + + +### [BraveGPT](https://bravegpt.com)   + +> Добавляет AI-ответы в Brave Search (на базе GPT-4o!) +
[Установить](https://docs.bravegpt.com/#-installation) / +[Читать](https://docs.bravegpt.com/#readme) / +[Обсуждение](https://github.bravegpt.com/discussions) + +### [ChatGPT Auto-Continue ⏩](https://chatgptautocontinue.com)   + +> Автоматически продолжает генерировать несколько ответов ChatGPT. +
[Установить](https://docs.chatgptautocontinue.com/#-installation) / +[Читать](https://docs.chatgptautocontinue.com/#readme) / +[Обсуждение](https://github.chatgptautocontinue.com/discussions) + +### [ChatGPT Auto-Talk 📣](https://github.com/adamlui/chatgpt-auto-talk) + +> Автоматическое воспроизведение ответов ChatGPT. +
[Установить](https://greasyfork.org/scripts/500940-chatgpt-auto-talk) / +[Читать](https://github.com/adamlui/chatgpt-auto-talk#readme) / +[Обсуждение](https://github.com/adamlui/chatgpt-auto-talk/discussions) + +### [ChatGPT Auto Refresh ↻](https://chatgptautorefresh.com)   + +> Поддерживает сессии ChatGPT свежими, чтобы избежать сетевых ошибок + проверок Cloudflare. +
[Установить](https://docs.chatgptautorefresh.com/#-installation) / +[Читать](https://docs.chatgptautorefresh.com/#readme) / +[Обсуждение](https://github.chatgptautorefresh.com/discussions) + +### [DuckDuckGPT](https://duckduckgpt.com)   + +> Добавляет AI-ответы в DuckDuckGo (на базе GPT-4o!) +
[Установить](https://docs.ddgpt.com/#-installation) / +[Читать](https://docs.ddgpt.com/#readme) / +[Обсуждение](https://github.ddgpt.com/discussions) + +### [GoogleGPT](https://googlegpt.io)   + +> Добавляет AI-ответы в поиск Google (на базе Google Gemma + GPT-4o!) +
[Установить](https://greasyfork.googlegpt.io) / +[Читать](https://docs.googlegpt.io/#readme) / +[Обсуждение](https://github.googlegpt.io/discussions) + +### [ThunderAI](https://micz.it/thunderdbird-addon-thunderai/)  [Оценка 5 звезд] + +> Используйте ChatGPT в Thunderbird для улучшения ваших писем, даже с бесплатным аккаунтом! +
[Установить](https://addons.thunderbird.net/thunderbird/addon/thunderai/) / +[Читать](https://micz.it/thunderdbird-addon-thunderai/) / +[Поддержка](https://github.com/micz/ThunderAI/issues) + +


+ + + + + +


+ + + + + +


+ +

+Если вы создали что-то с использованием chatgpt.js и хотите поделиться, напишите на showcase@chatgptjs.org или просто откройте запрос на слияние! +

+ + + +
+ +## 🧠 Участники + +
+ +Эта библиотека существует благодаря коду, переводам, проблемам и идеям от следующих участников: + +

+ +[![](https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/10906554?first-contrib=2023.03.15&h=47&w=47&fit=crop&mask=circle&output=format:webp)](https://github.com/JoeSoderlund) +[![](https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/49628936?first-contrib=2023.05.09&h=47&w=47&fit=crop&mask=circle&output=format:webp)](https://github.com/Abhi2905) +[![](https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/50336817?first-contrib=2023.05.09&h=47&w=47&fit=crop&mask=circle&output=format:webp)](https://github.com/alexnguyen93) +[![](https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/93998410?first-contrib=2023.06.30&h=47&w=47&fit=crop&mask=circle&output=format:webp)](https://github.com/wanlinin) +[![](https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/94313881?first-contrib=2023.08.23&h=47&w=47&fit=crop&mask=circle&output=format:webp)](https://github.com/hatanos) + +
+ +--- +