Advertisement
Guest User

Untitled

a guest
Jul 18th, 2023
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Switch ChatGPT Conversation To GPT-4
  3. // @namespace   http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Change the request model of the conversation
  6. // @author       Redwinam
  7. // @match        https://chat.openai.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. let shouldModify = false;
  13. // Store the original fetch() function
  14. let oldFetch = window.fetch;
  15. // Override the fetch() function
  16.     window.fetch = async function(input, init) {
  17. // If it's the API call we want to modify
  18. if (shouldModify && input.endsWith('/backend-api/conversation') && (init.method === 'POST')) {
  19. // Parse and modify the request body
  20. let oldBody = JSON.parse(init.body);
  21.             oldBody.model = 'gpt-4';
  22. // Update the request body
  23.             init.body = JSON.stringify(oldBody);
  24. }
  25. // Call the original fetch() function
  26. return oldFetch.apply(this, arguments);
  27. };
  28. // Add the button
  29. let button = document.createElement('button');
  30.     button.style = `
  31.         position: fixed;
  32.         bottom: 20px;
  33.         right: 20px;
  34.         z-index: 10000;
  35.         font-family: Arial, sans-serif;
  36.         font-size: 13px;
  37.         color: rgb(64, 65, 79);
  38.         border: 1px solid rgb(217, 217, 227);
  39.         background-color: #FFFFFF;
  40.         padding: 6px 12px;
  41.         border-radius: 4px;
  42.         cursor: pointer;
  43. `;
  44.     button.innerText = 'Toggle GPT-4';
  45.     button.addEventListener('click', function() {
  46.         shouldModify = !shouldModify;
  47.         button.innerText = shouldModify ? 'GPT-4: ON' : 'GPT-4: OFF';
  48. });
  49.     document.body.appendChild(button);
  50. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement