Skip to content

Commit c7287b4

Browse files
committed
Bumped versions in jsDelivr URLs to 2.9.1
1 parent d87be98 commit c7287b4

16 files changed

+93
-93
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
[![](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)
4646
[![](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)
4747
[![](https://img.shields.io/github/commit-activity/m/KudoAI/chatgpt.js?label=Commits&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/commits/main)
48-
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.0&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.0/dist/chatgpt.min.js)
48+
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.1&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.1/dist/chatgpt.min.js)
4949
[![](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)
5050
[![](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)
5151
[![](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)
@@ -83,7 +83,7 @@
8383

8484
```js
8585
(async () => {
86-
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
86+
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
8787
// Your code here...
8888
})();
8989
```
@@ -92,7 +92,7 @@
9292

9393
```js
9494
var xhr = new XMLHttpRequest();
95-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
95+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
9696
xhr.onload = function () {
9797
if (xhr.status === 200) {
9898
var chatgptJS = document.createElement('script');
@@ -114,7 +114,7 @@ function yourCode() {
114114
115115
```js
116116
...
117-
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js
117+
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js
118118
// ==/UserScript==
119119

120120
// Your code here...
@@ -189,7 +189,7 @@ chatgpt.get('reply', 'last');
189189

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

192-
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/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!
192+
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/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!
193193

194194
<img height=8px width="100%" src="https://media.chatgptjs.org/images/separators/gradient-aqua.png?78210a7">
195195

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

337337
**[Releases](https://github.com/KudoAI/chatgpt.js/releases)** /
338-
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/docs/USERGUIDE.md) /
338+
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/docs/USERGUIDE.md) /
339339
[Discuss](https://github.com/KudoAI/chatgpt.js/discussions) /
340340
<a href="#--------------------------------------------------------------------------------english---------简体中文---------繁體中文---------日本---------한국인---------हिंदी---------नेपाली---------deutsch---------español---------français---------italiano---------nederlands---------português---------việt----">Back to top ↑</a>
341341

docs/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
[![](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)
4646
[![](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)
4747
[![](https://img.shields.io/github/commit-activity/m/KudoAI/chatgpt.js?label=Commits&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/commits/main)
48-
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.0&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.0/dist/chatgpt.min.js)
48+
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.1&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.1/dist/chatgpt.min.js)
4949
[![](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)
5050
[![](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)
5151
[![](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)
@@ -83,7 +83,7 @@
8383

8484
```js
8585
(async () => {
86-
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
86+
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
8787
// Your code here...
8888
})();
8989
```
@@ -92,7 +92,7 @@
9292

9393
```js
9494
var xhr = new XMLHttpRequest();
95-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
95+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
9696
xhr.onload = function () {
9797
if (xhr.status === 200) {
9898
var chatgptJS = document.createElement('script');
@@ -114,7 +114,7 @@ function yourCode() {
114114
115115
```js
116116
...
117-
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js
117+
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js
118118
// ==/UserScript==
119119

120120
// Your code here...
@@ -189,7 +189,7 @@ chatgpt.get('reply', 'last');
189189

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

192-
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/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!
192+
If it didn't, check out the extended [userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/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!
193193

194194
<img height=8px width="100%" src="https://media.chatgptjs.org/images/separators/gradient-aqua.png?78210a7">
195195

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

337337
**[Releases](https://github.com/KudoAI/chatgpt.js/releases)** /
338-
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/docs/USERGUIDE.md) /
338+
[Userguide](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/docs/USERGUIDE.md) /
339339
[Discuss](https://github.com/KudoAI/chatgpt.js/discussions) /
340340
<a href="#--------------------------------------------------------------------------------english---------简体中文---------繁體中文---------日本---------한국인---------हिंदी---------नेपाली---------deutsch---------español---------français---------italiano---------nederlands---------português---------việt----">Back to top ↑</a>
341341

docs/USERGUIDE.md

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

149149
```js
150150
(async () => {
151-
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
151+
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
152152
// Your code here...
153153
})();
154154
```
@@ -157,7 +157,7 @@
157157

158158
```js
159159
var xhr = new XMLHttpRequest();
160-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
160+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
161161
xhr.onload = function () {
162162
if (xhr.status === 200) {
163163
var chatgptJS = document.createElement('script');
@@ -179,7 +179,7 @@ function yourCode() {
179179
180180
```js
181181
...
182-
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js
182+
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js
183183
// ==/UserScript==
184184

185185
// Your code here...

docs/de/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
[![](https://img.shields.io/github/stars/KudoAI/chatgpt.js?label=Sterne&color=af68ff&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/stargazers)
4646
[![](https://img.shields.io/badge/Lizenz-MIT-green.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge)](LICENSE.md)
4747
[![](https://img.shields.io/github/commit-activity/m/KudoAI/chatgpt.js?label=Commits&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/commits/main)
48-
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.0&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.0/dist/chatgpt.min.js)
48+
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.1&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.1/dist/chatgpt.min.js)
4949
[![](https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Codequalität&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge)](https://www.codefactor.io/repository/github/kudoai/chatgpt.js)
5050
[![](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=Schwachstellen&color=gold)](https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js)
5151
[![](https://img.shields.io/badge/Erwähnt_in-Awesome-cca8c4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/sindresorhus/awesome-chatgpt#javascript)
@@ -83,7 +83,7 @@
8383

8484
```js
8585
(async () => {
86-
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
86+
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
8787
// Ihr Code hier...
8888
})();
8989
```
@@ -92,7 +92,7 @@
9292

9393
```js
9494
var xhr = new XMLHttpRequest();
95-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
95+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
9696
xhr.onload = function () {
9797
if (xhr.status === 200) {
9898
var chatgptJS = document.createElement('script');
@@ -114,7 +114,7 @@ function yourCode() {
114114
115115
```js
116116
...
117-
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js
117+
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js
118118
// ==/UserScript==
119119

120120
// Ihr Code hier...
@@ -189,7 +189,7 @@ chatgpt.get('reply', 'last');
189189

190190
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?)
191191

192-
Wenn dies nicht der Fall ist, schauen Sie sich den erweiterten [benutzerleitfaden](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/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!
192+
Wenn dies nicht der Fall ist, schauen Sie sich den erweiterten [benutzerleitfaden](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/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!
193193

194194
<img height=8px width="100%" src="https://media.chatgptjs.org/images/separators/gradient-aqua.png?78210a7">
195195

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

337337
**[Veröffentlichungen](https://github.com/KudoAI/chatgpt.js/releases)** /
338-
[Benutzerhandbuch](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/docs/USERGUIDE.md) /
338+
[Benutzerhandbuch](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/docs/USERGUIDE.md) /
339339
[Diskutieren](https://github.com/KudoAI/chatgpt.js/discussions) /
340340
<a href="#">Zurück nach oben ↑</a>
341341

docs/es/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
[![](https://img.shields.io/github/stars/KudoAI/chatgpt.js?label=Estrellas&color=af68ff&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/stargazers)
4646
[![](https://img.shields.io/badge/Licencia-MIT-green.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge)](LICENSE.md)
4747
[![](https://img.shields.io/github/commit-activity/m/KudoAI/chatgpt.js?label=Confirmaciones&logo=github&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/commits/main)
48-
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.0&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.0/dist/chatgpt.min.js)
48+
[![](https://img.shields.io/github/size/KudoAI/chatgpt.js/dist/chatgpt.min.js?branch=v2.9.1&label=Minified%20Size&logo=databricks&logoColor=white&labelColor=464646&color=ff69b4&style=for-the-badge)](https://github.com/KudoAI/chatgpt.js/tree/v2.9.1/dist/chatgpt.min.js)
4949
[![](https://img.shields.io/codefactor/grade/github/kudoai/chatgpt.js?label=Calidad+del+Código&logo=codefactor&logoColor=white&labelColor=464646&color=1acc6c&style=for-the-badge)](https://www.codefactor.io/repository/github/kudoai/chatgpt.js)
5050
[![](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=Vulnerabilidades&color=gold)](https://sonarcloud.io/component_measures?metric=new_vulnerabilities&id=kudoai_chatgpt.js)
5151
[![](https://img.shields.io/badge/Mencionado_en-Awesome-cca8c4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge)](https://github.com/sindresorhus/awesome-chatgpt#javascript)
@@ -83,7 +83,7 @@
8383

8484
```js
8585
(async () => {
86-
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
86+
await import('https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
8787
// Tu código aquí...
8888
})();
8989
```
@@ -92,7 +92,7 @@
9292

9393
```js
9494
var xhr = new XMLHttpRequest();
95-
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js');
95+
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js');
9696
xhr.onload = function () {
9797
if (xhr.status === 200) {
9898
var chatgptJS = document.createElement('script');
@@ -114,7 +114,7 @@ function yourCode() {
114114
115115
```js
116116
...
117-
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.0/dist/chatgpt.min.js
117+
// @require https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.1/dist/chatgpt.min.js
118118
// ==/UserScript==
119119

120120
// Tu código aquí...
@@ -189,7 +189,7 @@ chatgpt.get('reply', 'last');
189189

190190
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?)
191191

192-
Si no fue así, consulte la [guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/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!
192+
Si no fue así, consulte la [guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/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!
193193

194194
<img height=8px width="100%" src="https://media.chatgptjs.org/images/separators/gradient-aqua.png?78210a7">
195195

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

337337
**[Lanzamientos](https://github.com/KudoAI/chatgpt.js/releases)** /
338-
[Guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v2.9.0/docs/USERGUIDE.md) /
338+
[Guía del usuario](https://github.com/KudoAI/chatgpt.js/blob/v2.9.1/docs/USERGUIDE.md) /
339339
[Conversar](https://github.com/KudoAI/chatgpt.js/discussions) /
340340
<a href="#">Volver arriba ↑</a>
341341

0 commit comments

Comments
 (0)