Add files via upload

This commit is contained in:
Sam Sneed 2024-06-02 13:38:00 +00:00 committed by GitHub
parent f89d1748ad
commit 9c86e1d12a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 1 deletions

13
chatgpt.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -15,7 +15,7 @@
<script>
function go(q) {
let xhr = new XMLHttpRequest();
xhr.open('GET', 'https://cdn.jsdelivr.net/npm/@kudoai/chatgpt.js@2.9.3/dist/chatgpt.min.js');
xhr.open('GET', 'chatgpt.min.js');
xhr.onload = function () {
if (xhr.status === 200) {
var chatgptJS = document.createElement('script');