I created a dedicated HTTP API for official ChatGPT API, its using POST so it can handle long prompts and it supports setting all OpenAI properties
axios({
method: 'post',
url: 'https://chatgpt.pawan.krd/ask',
headers: {| { | |
| "last_node_id": 25, | |
| "last_link_id": 43, | |
| "nodes": [ | |
| { | |
| "id": 14, | |
| "type": "VideoLinearCFGGuidance", | |
| "pos": [ | |
| 487.799932861328, | |
| 265.6999450683599 |
| # 2023-11-27 MIT LICENSE | |
| Here's the open source version of my ChatGPT game MonkeyIslandAmsterdam.com. | |
| It's an unofficial image+text-based adventure game edition of Monkey Island in Amsterdam, my home town. | |
| Please use it however you want. It'd be nice to see more ChatGPT-based games appear from this. If you get inspired by it, please link back to my X https://x.com/levelsio or this Gist so more people can do the same! | |
| Send me your ChatGPT text adventure game on X, I'd love to try it! |
| { | |
| "actions":[ | |
| { | |
| "title":"Open Tweet", | |
| "regex":"https?://(mobile\\.|www\\.|m\\.)?twitter\\.com/(@?[a-zA-Z0-9_]{1,15}/)?(status|i/web/status|statuses|i/topics/tweet)/(\\d+).*$", | |
| "testInputs":[ | |
| "https://twitter.com/zpower/status/588561590997352448", | |
| "https://mobile.twitter.com/kiebk/status/599159327056863232?cn=cmVwbHk%3D&refsrc=email", | |
| "https://twitter.com/i/web/status/814237378382622720", | |
| "https://twitter.com/hamburger/statuses/221225038941126657", |
| /******************************************************************/ | |
| /* Ensure 'report bug' dialog doesn't take over the entire screen */ | |
| /******************************************************************/ | |
| #mx_Dialog_Container div[aria-describedby="report_bug"] { | |
| /* Don't take up the entire screen */ | |
| width: fit-content; | |
| height: fit-content; | |
| padding: 20px; | |
| border-radius: 20px; |
| /* | |
| Gist link for desktop users: https://gist.github.com/j0lol/9674befc870e2b62fe9a24fe29ef9e1a | |
| Made by @j0lol:beeper.com. For support, message me on Beeper or at https://j0.lol | |
| */ | |
| /* Shorten room height */ | |
| .rooms_scroll-container ._2iYRbtxMK350NUKTyKq6TP { | |
| height: 32px; | |
| } |
| function(e,n,t){var r=t(99581);n.createRoot=r.createRoot,n.hydrateRoot=r.hydrateRoot} | |
| function(e,n,t){/** | |
| * @license React | |
| * react-dom.production.min.js | |
| * | |
| * Copyright (c) Facebook, Inc. and its affiliates. | |
| * | |
| * This source code is licensed under the MIT license found in the | |
| * LICENSE file in the root directory of this source tree. |
| { | |
| "schema_version": "v1", | |
| "name_for_model": "twilio", | |
| "name_for_human": "Twilio Plugin", | |
| "description_for_model": "Plugin for integrating the Twilio API to send SMS messages and make phone calls. Use it whenever a user wants to send a text message or make a call using their Twilio account.", | |
| "description_for_human": "Send text messages and make phone calls with Twilio.", | |
| "auth": { | |
| "type": "user_http", | |
| "authorization_type": "basic" | |
| }, |
| # Save the transcripts using the "Save Page WE" Chrome Extension | |
| # This script was generated by ChatGPT | |
| import sys | |
| from bs4 import BeautifulSoup | |
| # Check if a file was provided as a command line argument | |
| if len(sys.argv) < 2: | |
| print("Please provide an HTML file as a command line argument.") | |
| sys.exit(1) |
| # Got a bunch of .ckpt files to convert? | |
| # Here's a handy script to take care of all that for you! | |
| # Original .ckpt files are not touched! | |
| # Make sure you have enough disk space! You are going to DOUBLE the size of your models folder! | |
| # | |
| # First, run: | |
| # pip install torch torchsde==0.2.5 safetensors==0.2.5 | |
| # | |
| # Place this file in the **SAME DIRECTORY** as all of your .ckpt files, open a command prompt for that folder, and run: | |
| # python convert_to_safe.py |