Add injected Menu Items

This commit is contained in:
Raven Scott
2024-10-02 05:10:03 -04:00
parent 94ee7240ad
commit 9f784f5c0a
2 changed files with 43 additions and 5 deletions

View File

@ -198,4 +198,16 @@ async function resetChat(displaySuccessMessage = true) {
// Resets the chat on page load without displaying the success message
document.addEventListener('DOMContentLoaded', function () {
resetChat(false);
});
});
function openGpuStats() {
window.open('https://chat.x64.world/smi.html', 'gpuStatsWindow', 'width=800,height=600');
}
function openLiveLog() {
window.open('https://llama-live-log.x64.world/', 'liveLogWindow', 'width=600,height=600');
}
function openTop() {
window.open('https://ai-top.x64.world/', 'liveLogGtopWindow', 'width=800,height=600');
}