User:DodoMan/chatbot.js: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 April 2024

  • curprev 14:3014:30, 17 April 2024DodoMan talk contribs 21,194 bytes +21,194 Created page with "(function(){ // define constants const tokenLimit = 4096; const temperature = 0.5; const model = 'gpt-3.5-turbo'; const charLimit = tokenLimit * 5; // rough estimate const articleContextLimit = charLimit * 0.1; const historyLimit = charLimit * 0.2; const selectionLimit = charLimit * 0.25; const promptLimit = charLimit * 0.25; const backgroundColor = '#def'; const backgroundColorUser = '#ddd'; const backgroundColorBot = '#dfd'; const backgroundColorError = '#..."