Skip to content

Commit a14923f

Browse files
committed
Bumped versions in jsDelivr URLs to 3.8.3
1 parent f0780b9 commit a14923f

File tree

17 files changed

+115
-115
lines changed

17 files changed

+115
-115
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<img src="https://img.shields.io/badge/License-MIT-fc4f2d.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5252
<a href="https://www.npmjs.com/package/@kudoai/chatgpt.js/v/latest" target="_blank" rel="noopener">
5353
<img src="https://img.shields.io/npm/v/%40kudoai%2Fchatgpt.js?logo=npm&logoColor=white&labelColor=464646&color=blue&style=for-the-badge&label=Latest+Release"></a>
54-
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.2/dist/chatgpt.min.js" target="_blank" rel="noopener">
55-
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.2&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
54+
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.3/dist/chatgpt.min.js" target="_blank" rel="noopener">
55+
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.3&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
5656
<a href="https://www.codefactor.io/repository/github/kudoai/chatgpt.js" target="_blank" rel="noopener">
5757
<img src="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"></a>
5858
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js" target="_blank" rel="noopener">
@@ -120,7 +120,7 @@
120120

121121
```js
122122
(async () => {
123-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
123+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
124124
// Your code here...
125125
})();
126126
```
@@ -129,7 +129,7 @@
129129

130130
```js
131131
var xhr = new XMLHttpRequest();
132-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
132+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
133133
xhr.onload = function () {
134134
if (xhr.status === 200) {
135135
var chatgptJS = document.createElement('script');
@@ -152,7 +152,7 @@ function yourCode() {
152152
153153
```js
154154
...
155-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
155+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
156156
// ==/UserScript==
157157

158158
// Your code here...
@@ -222,7 +222,7 @@ chatgpt.get('reply', 'last');
222222

223223
Each call equally fetches the last response. If you think it works, it probably will... so just type it!
224224

225-
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md), or simply submit an [issue](https://github.com/KudoAI/chatgpt.js/issues) or [PR](https://github.com/KudoAI/chatgpt.js/pulls) and it will be integrated, ezpz!
225+
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md), or simply submit an [issue](https://github.com/KudoAI/chatgpt.js/issues) or [PR](https://github.com/KudoAI/chatgpt.js/pulls) and it will be integrated, ezpz!
226226

227227
<img height=8px width="100%" src="https://assets.chatgptjs.org/images/separators/gradient-aqua.png?v=e638eac">
228228

@@ -480,7 +480,7 @@ This library exists thanks to code, translations, issues & ideas from the follow
480480
<div align="center">
481481

482482
**[Releases](https://github.com/KudoAI/chatgpt.js/releases)** /
483-
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) /
483+
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) /
484484
[Discuss](https://github.com/KudoAI/chatgpt.js/discussions) /
485485
[Back to top ↑](#top)
486486

docs/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<img src="https://img.shields.io/badge/License-MIT-fc4f2d.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5252
<a href="https://www.npmjs.com/package/@kudoai/chatgpt.js/v/latest" target="_blank" rel="noopener">
5353
<img src="https://img.shields.io/npm/v/%40kudoai%2Fchatgpt.js?logo=npm&logoColor=white&labelColor=464646&color=blue&style=for-the-badge&label=Latest+Release"></a>
54-
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.2/dist/chatgpt.min.js" target="_blank" rel="noopener">
55-
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.2&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
54+
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.3/dist/chatgpt.min.js" target="_blank" rel="noopener">
55+
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.3&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
5656
<a href="https://www.codefactor.io/repository/github/kudoai/chatgpt.js" target="_blank" rel="noopener">
5757
<img src="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"></a>
5858
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js" target="_blank" rel="noopener">
@@ -120,7 +120,7 @@
120120

121121
```js
122122
(async () => {
123-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
123+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
124124
// Your code here...
125125
})();
126126
```
@@ -129,7 +129,7 @@
129129

130130
```js
131131
var xhr = new XMLHttpRequest();
132-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
132+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
133133
xhr.onload = function () {
134134
if (xhr.status === 200) {
135135
var chatgptJS = document.createElement('script');
@@ -152,7 +152,7 @@ function yourCode() {
152152
153153
```js
154154
...
155-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
155+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
156156
// ==/UserScript==
157157

158158
// Your code here...
@@ -222,7 +222,7 @@ chatgpt.get('reply', 'last');
222222

223223
Each call equally fetches the last response. If you think it works, it probably will... so just type it!
224224

225-
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md), or simply submit an [issue](https://github.com/KudoAI/chatgpt.js/issues) or [PR](https://github.com/KudoAI/chatgpt.js/pulls) and it will be integrated, ezpz!
225+
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md), or simply submit an [issue](https://github.com/KudoAI/chatgpt.js/issues) or [PR](https://github.com/KudoAI/chatgpt.js/pulls) and it will be integrated, ezpz!
226226

227227
<img height=8px width="100%" src="https://assets.chatgptjs.org/images/separators/gradient-aqua.png?v=e638eac">
228228

@@ -480,7 +480,7 @@ This library exists thanks to code, translations, issues & ideas from the follow
480480
<div align="center">
481481

482482
**[Releases](https://github.com/KudoAI/chatgpt.js/releases)** /
483-
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) /
483+
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) /
484484
[Discuss](https://github.com/KudoAI/chatgpt.js/discussions) /
485485
[Back to top ↑](#top)
486486

docs/USERGUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165

166166
```js
167167
(async () => {
168-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
168+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
169169
// Your code here...
170170
})();
171171
```
@@ -174,7 +174,7 @@
174174

175175
```js
176176
var xhr = new XMLHttpRequest();
177-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
177+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
178178
xhr.onload = function () {
179179
if (xhr.status === 200) {
180180
var chatgptJS = document.createElement('script');
@@ -196,7 +196,7 @@ function yourCode() {
196196
197197
```js
198198
...
199-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
199+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
200200
// ==/UserScript==
201201

202202
// Your code here...

docs/de/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<img src="https://img.shields.io/badge/Lizenz-MIT-fc4f2d.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5252
<a href="https://www.npmjs.com/package/@kudoai/chatgpt.js/v/latest" target="_blank" rel="noopener">
5353
<img src="https://img.shields.io/npm/v/%40kudoai%2Fchatgpt.js?logo=npm&logoColor=white&labelColor=464646&color=blue&style=for-the-badge&label=Neuste%20Ver%C3%B6ffentlichung"></a>
54-
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.2/dist/chatgpt.min.js" target="_blank" rel="noopener">
55-
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.2&label=Minimierte%20Gr%C3%B6%C3%9Fe&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
54+
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.3/dist/chatgpt.min.js" target="_blank" rel="noopener">
55+
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.3&label=Minimierte%20Gr%C3%B6%C3%9Fe&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
5656
<a href="https://www.codefactor.io/repository/github/kudoai/chatgpt.js" target="_blank" rel="noopener">
5757
<img src="https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Codequalit%C3%A4t&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge"></a>
5858
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js" target="_blank" rel="noopener">
@@ -119,7 +119,7 @@
119119

120120
```js
121121
(async () => {
122-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
122+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
123123
// Ihr Code hier...
124124
})();
125125
```
@@ -128,7 +128,7 @@
128128

129129
```js
130130
var xhr = new XMLHttpRequest();
131-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
131+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
132132
xhr.onload = function () {
133133
if (xhr.status === 200) {
134134
var chatgptJS = document.createElement('script');
@@ -150,7 +150,7 @@ function yourCode() {
150150
151151
```js
152152
...
153-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
153+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
154154
// ==/UserScript==
155155

156156
// Ihr Code hier...
@@ -219,7 +219,7 @@ chatgpt.get('reply', 'last');
219219

220220
Jeder Aufruf ruft gleichermaßen die letzte Antwort ab. Wenn Sie glauben, dass es funktioniert, wird es wahrscheinlich auch funktionieren ... also geben Sie es einfach ein! (Wer hat Zeit für Dokumente?)
221221

222-
Wenn dies nicht der Fall ist, schauen Sie sich den erweiterten [benutzerleitfaden](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) an oder reichen Sie einfach ein [Problem](https://github.com/KudoAI/chatgpt.js/issues) ein oder [PR](https://github.com/KudoAI/chatgpt.js/pulls) und es wird integriert, ganz einfach!
222+
Wenn dies nicht der Fall ist, schauen Sie sich den erweiterten [benutzerleitfaden](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) an oder reichen Sie einfach ein [Problem](https://github.com/KudoAI/chatgpt.js/issues) ein oder [PR](https://github.com/KudoAI/chatgpt.js/pulls) und es wird integriert, ganz einfach!
223223

224224
<img height=8px width="100%" src="https://assets.chatgptjs.org/images/separators/gradient-aqua.png?v=e638eac">
225225

@@ -476,7 +476,7 @@ Diese Bibliothek existiert dank Code, Übersetzungen, Problemen und Ideen der fo
476476
<div align="center">
477477

478478
**[Veröffentlichungen](https://github.com/KudoAI/chatgpt.js/releases)** /
479-
[Benutzerhandbuch](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) /
479+
[Benutzerhandbuch](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) /
480480
[Diskutieren](https://github.com/KudoAI/chatgpt.js/discussions) /
481481
<a href="#top">Zurück nach oben ↑</a>
482482

docs/es/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<img src="https://img.shields.io/badge/Licencia-MIT-fc4f2d.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5252
<a href="https://www.npmjs.com/package/@kudoai/chatgpt.js/v/latest" target="_blank" rel="noopener">
5353
<img src="https://img.shields.io/npm/v/%40kudoai%2Fchatgpt.js?logo=npm&logoColor=white&labelColor=464646&color=blue&style=for-the-badge&label=%C3%9Altimo%20lanzamiento"></a>
54-
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.2/dist/chatgpt.min.js" target="_blank" rel="noopener">
55-
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.2&label=Tama%C3%B1o%20minimizado&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
54+
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.3/dist/chatgpt.min.js" target="_blank" rel="noopener">
55+
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.3&label=Tama%C3%B1o%20minimizado&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
5656
<a href="https://www.codefactor.io/repository/github/kudoai/chatgpt.js" target="_blank" rel="noopener">
5757
<img src="https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Calidad+del+C%C3%B3digo&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge"></a>
5858
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js" target="_blank" rel="noopener">
@@ -119,7 +119,7 @@
119119

120120
```js
121121
(async () => {
122-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
122+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
123123
// Tu código aquí...
124124
})();
125125
```
@@ -128,7 +128,7 @@
128128

129129
```js
130130
var xhr = new XMLHttpRequest();
131-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
131+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
132132
xhr.onload = function () {
133133
if (xhr.status === 200) {
134134
var chatgptJS = document.createElement('script');
@@ -150,7 +150,7 @@ function yourCode() {
150150
151151
```js
152152
...
153-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
153+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
154154
// ==/UserScript==
155155

156156
// Tu código aquí...
@@ -219,7 +219,7 @@ chatgpt.get('reply', 'last');
219219

220220
Cada llamada obtiene igualmente la última respuesta. Si crees que funciona, probablemente lo hará... ¡así que escríbelo! (¿Quién tiene tiempo para los documentos?)
221221

222-
Si no fue así, consulte la [guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) extendida, o simplemente envíe un [problema] (https:/ /github.com/KudoAI/chatgpt.js/issues) o [PR](https://github.com/KudoAI/chatgpt.js/pulls) y se integrará, ¡pan comido!
222+
Si no fue así, consulte la [guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) extendida, o simplemente envíe un [problema] (https:/ /github.com/KudoAI/chatgpt.js/issues) o [PR](https://github.com/KudoAI/chatgpt.js/pulls) y se integrará, ¡pan comido!
223223

224224
<img height=8px width="100%" src="https://assets.chatgptjs.org/images/separators/gradient-aqua.png?v=e638eac">
225225

@@ -476,7 +476,7 @@ Esta biblioteca existe gracias al código, las traducciones, los problemas y las
476476
<div align="center">
477477

478478
**[Lanzamientos](https://github.com/KudoAI/chatgpt.js/releases)** /
479-
[Guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) /
479+
[Guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) /
480480
[Conversar](https://github.com/KudoAI/chatgpt.js/discussions) /
481481
<a href="#top">Volver arriba ↑</a>
482482

docs/fr/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
<img src="https://img.shields.io/badge/Licence-MIT-fc4f2d.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5252
<a href="https://www.npmjs.com/package/@kudoai/chatgpt.js/v/latest" target="_blank" rel="noopener">
5353
<img src="https://img.shields.io/npm/v/%40kudoai%2Fchatgpt.js?logo=npm&logoColor=white&labelColor=464646&color=blue&style=for-the-badge&label=Derni%C3%A8re%20version"></a>
54-
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.2/dist/chatgpt.min.js" target="_blank" rel="noopener">
55-
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.2&label=Taille%20minimis%C3%A9e&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
54+
<a href="https://github.com/KudoAI/chatgpt.js/tree/v3.8.3/dist/chatgpt.min.js" target="_blank" rel="noopener">
55+
<img src="https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v3.8.3&label=Taille%20minimis%C3%A9e&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge"></a>
5656
<a href="https://www.codefactor.io/repository/github/kudoai/chatgpt.js" target="_blank" rel="noopener">
5757
<img src="https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Qualit%C3%A9+du+Code&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge"></a>
5858
<a href="https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js" target="_blank" rel="noopener">
@@ -119,7 +119,7 @@
119119

120120
```js
121121
(async () => {
122-
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
122+
await import('https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
123123
// Votre code ici...
124124
})();
125125
```
@@ -128,7 +128,7 @@
128128

129129
```js
130130
var xhr = new XMLHttpRequest();
131-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js');
131+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js');
132132
xhr.onload = function () {
133133
if (xhr.status === 200) {
134134
var chatgptJS = document.createElement('script');
@@ -150,7 +150,7 @@ function yourCode() {
150150
151151
```js
152152
...
153-
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].2/dist/chatgpt.min.js
153+
// @require https://cdn.jsdelivr.net/npm/@kudoai/[email protected].3/dist/chatgpt.min.js
154154
// ==/UserScript==
155155

156156
// Votre code ici...
@@ -219,7 +219,7 @@ chatgpt.get('reply', 'last');
219219

220220
Chaque appel récupère également la dernière réponse. Si vous pensez que cela fonctionne, cela fonctionnera probablement... alors tapez-le simplement!
221221

222-
Si ce n'est pas le cas, consultez le [guide de l'utilisateur](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) étendu, ou soumettez simplement un [problème](https://github.com/KudoAI/chatgpt.js/issues) ou [PR](https://github.com/KudoAI/chatgpt.js/pulls) et il sera intégré, très facile!
222+
Si ce n'est pas le cas, consultez le [guide de l'utilisateur](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) étendu, ou soumettez simplement un [problème](https://github.com/KudoAI/chatgpt.js/issues) ou [PR](https://github.com/KudoAI/chatgpt.js/pulls) et il sera intégré, très facile!
223223

224224
<img height=8px width="100%" src="https://assets.chatgptjs.org/images/separators/gradient-aqua.png?v=e638eac">
225225

@@ -476,7 +476,7 @@ Cette bibliothèque existe grâce au code, aux traductions, aux problèmes et au
476476
<div align="center">
477477

478478
**[Communiqués](https://github.com/KudoAI/chatgpt.js/releases)** /
479-
[Guide de l'utilisateur](https://github.com/KudoAI/chatgpt.js/blob/v3.8.2/docs/USERGUIDE.md) /
479+
[Guide de l'utilisateur](https://github.com/KudoAI/chatgpt.js/blob/v3.8.3/docs/USERGUIDE.md) /
480480
[Discuter](https://github.com/KudoAI/chatgpt.js/discussions) /
481481
<a href="#top">Retour au sommet ↑</a>
482482

0 commit comments

Comments
 (0)