Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UserSript to swap custom instructions (beta) #70

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
221 changes: 221 additions & 0 deletions autoexpert_userscript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
// ==UserScript==
// @name AutoExpert v6 Loader
// @namespace https://spdustin.substack.com
// @version 1.0
// @description Loads AutoExpert custom instructions and provides simple buttons to activate them
// @match https://chat.openai.com/*
// @grant GM_xmlhttpRequest
// ==/UserScript==
(function() {
const autoExpertPaths = [
{
"title": "Standard v5",
"id": "std_5",
"user_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__pre-eval/standard-edition/chatgpt_GPT4__about_me.md",
"model_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__pre-eval/standard-edition/chatgpt_GPT4__custom_instructions.md",
"emoji": "🧠"
},
{
"title": "Dev v5",
"id": "dev_5",
"user_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__pre-eval/developer-edition/chatgpt__about_me.md",
"model_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__pre-eval/developer-edition/chatgpt__custom_instructions.md",
"emoji": "💻"
},
{
"title": "Voice V5",
"id": "voice_5",
"user_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__voice_edition/voice-edition/chatgpt_GPT4_voice__about_me.md",
"model_url": "https://raw.githubusercontent.com/spdustin/ChatGPT-AutoExpert/dev__voice_edition/voice-edition/chatgpt_GPT4_voice__custom_instructions.md",
"emoji": "💬"
}
];
const BASE_URL = 'https://chat.openai.com';
const dataCache = {};
const customInstructionButtons = createFloatingButtonContainer();

let cachedToken = null;
let tokenExpiration = Date.now();

function handleError(context) {
return error => console.error(`An error occurred in ${context}:`, JSON.stringify(error, Object.getOwnPropertyNames(error)));
}

async function fetchToken() {
if (Date.now() < tokenExpiration) return cachedToken;
try {
const tokenData = await fetch(`${BASE_URL}/api/auth/session`)
.then(res => res.json());
cachedToken = tokenData.accessToken;
// Assuming token expires in 1 hour for example
tokenExpiration = Date.now() + 3600000;
} catch (err) {
handleError('fetchToken')(err);
}
}

async function fetchData(url, options = {}, needsAuth = false, isCrossOrigin = false) {
if (needsAuth) {
await fetchToken();
options.headers = {
'Authorization': `Bearer ${cachedToken}`,
...options.headers
};
}

if (isCrossOrigin) {
// Use GM_xmlhttpRequest for cross-origin requests
return new Promise((resolve, reject) => {
GM_xmlhttpRequest({
method: options.method || "GET",
headers: options.headers,
url: url,
onload: response => resolve(response.responseText),
onerror: reject
});
});
} else {
// Use native fetch for same-origin requests
const response = await fetch(url, options);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
}
}


async function updateCustomInstructions(data) {
try {
const response = await fetchData(`${BASE_URL}/backend-api/user_system_messages`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data)
}, true);

if (response.status !== 200) {
throw new Error(`Failed to update custom instructions: ${response.statusText}`);
}
} catch (err) {
handleError('updateCustomInstructions')(err);
}
}

function createButton(buttonData) {
const btn = document.createElement('button');
btn.title = buttonData.title;
btn.id = buttonData.id;
btn.innerHTML = buttonData.emoji;
btn.dataset.userUrl = buttonData.user_url;
btn.dataset.modelUrl = buttonData.model_url;
btn.style.backgroundColor = "#DFDFDF";
btn.style.border = "none";
btn.style.color = "white";
btn.style.padding = ".25em";
btn.style.textAlign = "center";
btn.style.fontSize = "16px";
btn.style.margin = ".25em ";
btn.style.cursor = "pointer";
return btn;
}


function updateButtonUI(btn, {
disabled,
backgroundColor,
text
}) {
btn.disabled = disabled;
btn.style.backgroundColor = backgroundColor;
btn.innerHTML = text || btn.innerHTML;
}

function generateButtons(autoExpertPaths, targetContainer) {
autoExpertPaths.forEach(buttonData => {
const btn = createButton(buttonData);
btn.onclick = () => handleButtonClick(btn);
targetContainer.appendChild(btn);
});

const disableBtn = createButton({
id: "ae_disable",
emoji: "🚫"
});
disableBtn.onclick = () => handleDisableClick(disableBtn);
targetContainer.appendChild(disableBtn);

document.body.appendChild(targetContainer);
}

function handleButtonClick(btn) {
updateButtonUI(btn, {
disabled: true,
backgroundColor: 'yellow'
});
performButtonClickAction(btn)
.then(() => {
updateButtonUI(btn, { backgroundColor: 'green' });
location.reload(true);
})
.catch((err) => {
updateButtonUI(btn, { backgroundColor: 'red' });
handleError('handleButtonClick')(err);
});
}

async function performButtonClickAction(btn) {
// The contents from autoExpertPaths are cross-origin
const userContentPromise = fetchData(btn.dataset.userUrl, {}, false, true);
const modelContentPromise = fetchData(btn.dataset.modelUrl, {}, false, true);

const [aboutUserContent, aboutModelContent] = await Promise.all([userContentPromise, modelContentPromise]);
const data = {
"about_user_message": aboutUserContent,
"about_model_message": aboutModelContent,
"enabled": true,
};

await updateCustomInstructions(data);
}


function handleDisableClick(btn) {
updateButtonUI(btn, {
backgroundColor: 'yellow',
disabled: true
});
performDisableClickAction(btn)
.then(() => {
updateButtonUI(btn, { backgroundColor: 'green' });
location.reload(true);
})
.catch((err) => {
updateButtonUI(btn, { backgroundColor: 'red' });
handleError('handleDisableClick')(err);
});
}

async function performDisableClickAction(btn) {
const fetchedData = await fetchData(`${BASE_URL}/backend-api/user_system_messages`, {}, true);
fetchedData.enabled = false;

await updateCustomInstructions(fetchedData);
}


function createFloatingButtonContainer() {
const container = document.createElement('div');
container.style.position = 'fixed';
container.style.top = '3em';
container.style.right = '1em';
container.style.zIndex = '9999';
container.style.width = '2em';
container.style.backgroundColor = "#FFFFFF";
return container;
}

generateButtons(autoExpertPaths, customInstructionButtons);

})();