mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Merge pull request #149 from gidzzz/main
A bunch of cleanups in prompt generator
This commit is contained in:
116
public/script.js
116
public/script.js
@ -1321,11 +1321,11 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
//console.log('Generate entered');
|
//console.log('Generate entered');
|
||||||
setGenerationProgress(0);
|
setGenerationProgress(0);
|
||||||
tokens_already_generated = 0;
|
tokens_already_generated = 0;
|
||||||
|
|
||||||
const isImpersonate = type == "impersonate";
|
const isImpersonate = type == "impersonate";
|
||||||
message_already_generated = isImpersonate ? `${name1}: ` : `${name2}: `;
|
message_already_generated = isImpersonate ? `${name1}: ` : `${name2}: `;
|
||||||
|
|
||||||
const slashCommand = getSlashCommand($("#send_textarea").val(), type);
|
const slashCommand = getSlashCommand($("#send_textarea").val(), type);
|
||||||
|
|
||||||
if (slashCommand == system_message_types.HELP) {
|
if (slashCommand == system_message_types.HELP) {
|
||||||
sendSystemMessage(system_message_types.HELP);
|
sendSystemMessage(system_message_types.HELP);
|
||||||
$("#send_textarea").val('').trigger('input');
|
$("#send_textarea").val('').trigger('input');
|
||||||
@ -1340,8 +1340,7 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
if (isStreamingEnabled()) {
|
if (isStreamingEnabled()) {
|
||||||
streamingProcessor = new StreamingProcessor(type, force_name2);
|
streamingProcessor = new StreamingProcessor(type, force_name2);
|
||||||
hideSwipeButtons();
|
hideSwipeButtons();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
streamingProcessor = false;
|
streamingProcessor = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1351,15 +1350,16 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (online_status != 'no_connection' && this_chid != undefined && this_chid !== 'invalid-safety-id') {
|
if (online_status != 'no_connection' && this_chid != undefined && this_chid !== 'invalid-safety-id') {
|
||||||
|
let textareaText;
|
||||||
if (type !== 'regenerate' && type !== "swipe" && !isImpersonate) {
|
if (type !== 'regenerate' && type !== "swipe" && !isImpersonate) {
|
||||||
is_send_press = true;
|
is_send_press = true;
|
||||||
var textareaText = $("#send_textarea").val();
|
textareaText = $("#send_textarea").val();
|
||||||
//console.log('Not a Regenerate call, so posting normall with input of: ' +textareaText);
|
//console.log('Not a Regenerate call, so posting normall with input of: ' +textareaText);
|
||||||
$("#send_textarea").val('').trigger('input');
|
$("#send_textarea").val('').trigger('input');
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
//console.log('Regenerate call detected')
|
//console.log('Regenerate call detected')
|
||||||
var textareaText = "";
|
textareaText = "";
|
||||||
if (chat.length && chat[chat.length - 1]['is_user']) {//If last message from You
|
if (chat.length && chat[chat.length - 1]['is_user']) {//If last message from You
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1389,32 +1389,27 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// bias from the latest message is top priority//
|
// bias from the latest message is top priority//
|
||||||
|
|
||||||
promptBias = messageBias ?? promptBias ?? '';
|
promptBias = messageBias ?? promptBias ?? '';
|
||||||
|
|
||||||
var storyString = "";
|
// Compute anchors
|
||||||
var userSendString = "";
|
const topAnchorDepth = 8;
|
||||||
var finalPromt = "";
|
let anchorTop = '';
|
||||||
var postAnchorChar = "Elaborate speaker";
|
let anchorBottom = '';
|
||||||
var postAnchorStyle = "Writing style: very long messages";//"[Genre: roleplay chat][Tone: very long messages with descriptions]";
|
if (!is_pygmalion) {
|
||||||
var anchorTop = '';
|
|
||||||
var anchorBottom = '';
|
|
||||||
var topAnchorDepth = 8;
|
|
||||||
|
|
||||||
if (character_anchor && !is_pygmalion) {
|
|
||||||
console.log('saw not pyg');
|
console.log('saw not pyg');
|
||||||
|
|
||||||
|
let postAnchorChar = character_anchor ? name2 + " Elaborate speaker" : "";
|
||||||
|
let postAnchorStyle = style_anchor ? "Writing style: very long messages" : "";
|
||||||
if (anchor_order === 0) {
|
if (anchor_order === 0) {
|
||||||
anchorTop = name2 + " " + postAnchorChar;
|
anchorTop = postAnchorChar;
|
||||||
} else {
|
anchorBottom = postAnchorStyle;
|
||||||
console.log('saw pyg, adding anchors')
|
} else { // anchor_order === 1
|
||||||
anchorBottom = "[" + name2 + " " + postAnchorChar + "]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (style_anchor && !is_pygmalion) {
|
|
||||||
if (anchor_order === 1) {
|
|
||||||
anchorTop = postAnchorStyle;
|
anchorTop = postAnchorStyle;
|
||||||
} else {
|
anchorBottom = postAnchorChar;
|
||||||
anchorBottom = "[" + postAnchorStyle + "]";
|
}
|
||||||
|
|
||||||
|
if (anchorBottom) {
|
||||||
|
anchorBottom = "[" + anchorBottom + "]";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1438,22 +1433,18 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
addOneMessage(chat[chat.length - 1]);
|
addOneMessage(chat[chat.length - 1]);
|
||||||
}
|
}
|
||||||
////////////////////////////////////
|
////////////////////////////////////
|
||||||
let chatString = '';
|
|
||||||
let arrMes = [];
|
|
||||||
let mesSend = [];
|
|
||||||
let charDescription = baseChatReplace($.trim(characters[this_chid].description), name1, name2);
|
let charDescription = baseChatReplace($.trim(characters[this_chid].description), name1, name2);
|
||||||
let charPersonality = baseChatReplace($.trim(characters[this_chid].personality), name1, name2);
|
let charPersonality = baseChatReplace($.trim(characters[this_chid].personality), name1, name2);
|
||||||
let Scenario = baseChatReplace($.trim(characters[this_chid].scenario), name1, name2);
|
let Scenario = baseChatReplace($.trim(characters[this_chid].scenario), name1, name2);
|
||||||
let mesExamples = baseChatReplace($.trim(characters[this_chid].mes_example), name1, name2);
|
let mesExamples = baseChatReplace($.trim(characters[this_chid].mes_example), name1, name2);
|
||||||
|
|
||||||
|
// Parse example messages
|
||||||
if (!mesExamples.startsWith('<START>')) {
|
if (!mesExamples.startsWith('<START>')) {
|
||||||
mesExamples = '<START>\n' + mesExamples.trim();
|
mesExamples = '<START>\n' + mesExamples.trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mesExamples.replace(/<START>/gi, '').trim().length === 0) {
|
if (mesExamples.replace(/<START>/gi, '').trim().length === 0) {
|
||||||
mesExamples = '';
|
mesExamples = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
let mesExamplesArray = mesExamples.split(/<START>/gi).slice(1).map(block => `<START>\n${block.trim()}\n`);
|
let mesExamplesArray = mesExamples.split(/<START>/gi).slice(1).map(block => `<START>\n${block.trim()}\n`);
|
||||||
|
|
||||||
if (main_api === 'openai') {
|
if (main_api === 'openai') {
|
||||||
@ -1467,6 +1458,8 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
setOpenAIMessageExamples(mesExamplesArray);
|
setOpenAIMessageExamples(mesExamplesArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let storyString = "";
|
||||||
|
|
||||||
if (is_pygmalion) {
|
if (is_pygmalion) {
|
||||||
storyString += appendToStoryString(charDescription, power_user.disable_description_formatting ? '' : name2 + "'s Persona: ");
|
storyString += appendToStoryString(charDescription, power_user.disable_description_formatting ? '' : name2 + "'s Persona: ");
|
||||||
storyString += appendToStoryString(charPersonality, power_user.disable_personality_formatting ? '' : 'Personality: ');
|
storyString += appendToStoryString(charPersonality, power_user.disable_personality_formatting ? '' : 'Personality: ');
|
||||||
@ -1506,12 +1499,10 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
|
|
||||||
//////////////////////////////////
|
//////////////////////////////////
|
||||||
|
|
||||||
var count_exm_add = 0;
|
|
||||||
console.log('emptying chat2');
|
console.log('emptying chat2');
|
||||||
var chat2 = [];
|
let chat2 = [];
|
||||||
var j = 0;
|
|
||||||
console.log('pre-replace chat.length = ' + chat.length);
|
console.log('pre-replace chat.length = ' + chat.length);
|
||||||
for (var i = chat.length - 1; i >= 0; i--) {
|
for (let i = chat.length - 1, j = 0; i >= 0; i--, j++) {
|
||||||
let charName = selected_group ? chat[j].name : name2;
|
let charName = selected_group ? chat[j].name : name2;
|
||||||
if (j == 0) {
|
if (j == 0) {
|
||||||
chat[j]['mes'] = chat[j]['mes'].replace(/{{user}}/gi, name1);
|
chat[j]['mes'] = chat[j]['mes'].replace(/{{user}}/gi, name1);
|
||||||
@ -1539,11 +1530,12 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
//chat2[i] = (chat2[i] ?? '').replace(/{.*}/g, '');
|
//chat2[i] = (chat2[i] ?? '').replace(/{.*}/g, '');
|
||||||
chat2[i] = (chat2[i] ?? '').replace(/{{(\*?.+?\*?)}}/g, '');
|
chat2[i] = (chat2[i] ?? '').replace(/{{(\*?.+?\*?)}}/g, '');
|
||||||
//console.log('replacing chat2 {}s');
|
//console.log('replacing chat2 {}s');
|
||||||
j++;
|
|
||||||
}
|
}
|
||||||
console.log('post replace chat.length = ' + chat.length);
|
console.log('post replace chat.length = ' + chat.length);
|
||||||
//chat2 = chat2.reverse();
|
//chat2 = chat2.reverse();
|
||||||
var this_max_context = 1487;
|
|
||||||
|
// Determine token limit
|
||||||
|
let this_max_context = 1487;
|
||||||
if (main_api == 'kobold' || main_api == 'textgenerationwebui') {
|
if (main_api == 'kobold' || main_api == 'textgenerationwebui') {
|
||||||
this_max_context = (max_context - amount_gen);
|
this_max_context = (max_context - amount_gen);
|
||||||
}
|
}
|
||||||
@ -1560,11 +1552,11 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
if (main_api == 'openai') {
|
if (main_api == 'openai') {
|
||||||
this_max_context = oai_settings.openai_max_context;
|
this_max_context = oai_settings.openai_max_context;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (main_api == 'poe') {
|
if (main_api == 'poe') {
|
||||||
this_max_context = Number(max_context);
|
this_max_context = Number(max_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Adjust token limit for Horde
|
||||||
let hordeAmountGen = null;
|
let hordeAmountGen = null;
|
||||||
if (main_api == 'kobold' && horde_settings.use_horde && horde_settings.auto_adjust) {
|
if (main_api == 'kobold' && horde_settings.use_horde && horde_settings.auto_adjust) {
|
||||||
let adjustedParams;
|
let adjustedParams;
|
||||||
@ -1594,14 +1586,16 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
let { worldInfoString, worldInfoBefore, worldInfoAfter } = getWorldInfoPrompt(chat2);
|
let { worldInfoString, worldInfoBefore, worldInfoAfter } = getWorldInfoPrompt(chat2);
|
||||||
|
|
||||||
console.log('post swipe shift:' + chat2.length);
|
console.log('post swipe shift:' + chat2.length);
|
||||||
var i = 0;
|
|
||||||
|
|
||||||
// hack for regeneration of the first message
|
// hack for regeneration of the first message
|
||||||
if (chat2.length == 0) {
|
if (chat2.length == 0) {
|
||||||
chat2.push('');
|
chat2.push('');
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var item of chat2) {
|
// Collect enough messages to fill the context
|
||||||
|
let chatString = '';
|
||||||
|
let arrMes = [];
|
||||||
|
for (let item of chat2) {
|
||||||
chatString = item + chatString;
|
chatString = item + chatString;
|
||||||
const encodeString = JSON.stringify(
|
const encodeString = JSON.stringify(
|
||||||
worldInfoString + storyString + chatString +
|
worldInfoString + storyString + chatString +
|
||||||
@ -1613,46 +1607,41 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
//if (is_pygmalion && i == chat2.length-1) item='<START>\n'+item;
|
//if (is_pygmalion && i == chat2.length-1) item='<START>\n'+item;
|
||||||
arrMes[arrMes.length] = item;
|
arrMes[arrMes.length] = item;
|
||||||
} else {
|
} else {
|
||||||
console.log('reducing chat.length by 1');
|
break;
|
||||||
i = chat2.length - 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await delay(1); //For disable slow down (encode gpt-2 need fix)
|
await delay(1); //For disable slow down (encode gpt-2 need fix)
|
||||||
// console.log(i+' '+chat.length);
|
}
|
||||||
|
|
||||||
count_exm_add = 0;
|
// Prepare unpinned example messages
|
||||||
|
let count_exm_add = 0;
|
||||||
if (i === chat2.length - 1) {
|
|
||||||
if (!power_user.pin_examples) {
|
if (!power_user.pin_examples) {
|
||||||
let mesExmString = '';
|
let mesExmString = '';
|
||||||
for (let iii = 0; iii < mesExamplesArray.length; iii++) {
|
for (let i = 0; i < mesExamplesArray.length; i++) {
|
||||||
mesExmString += mesExamplesArray[iii];
|
mesExmString += mesExamplesArray[i];
|
||||||
const prompt = JSON.stringify(worldInfoString + storyString + mesExmString + chatString + anchorTop + anchorBottom + charPersonality + promptBias + allAnchors);
|
const prompt = JSON.stringify(worldInfoString + storyString + mesExmString + chatString + anchorTop + anchorBottom + charPersonality + promptBias + allAnchors);
|
||||||
const tokenCount = getTokenCount(prompt, padding_tokens);
|
const tokenCount = getTokenCount(prompt, padding_tokens);
|
||||||
if (tokenCount < this_max_context) {
|
if (tokenCount < this_max_context) {
|
||||||
if (power_user.disable_examples_formatting) {
|
if (power_user.disable_examples_formatting) {
|
||||||
mesExamplesArray[iii] = mesExamplesArray[iii].replace(/<START>/i, '');
|
mesExamplesArray[i] = mesExamplesArray[i].replace(/<START>/i, '');
|
||||||
}
|
} else if (!is_pygmalion) {
|
||||||
|
mesExamplesArray[i] = mesExamplesArray[i].replace(/<START>/i, `This is how ${name2} should talk`);
|
||||||
if (!is_pygmalion) {
|
|
||||||
mesExamplesArray[iii] = mesExamplesArray[iii].replace(/<START>/i, `This is how ${name2} should talk`);
|
|
||||||
}
|
}
|
||||||
count_exm_add++;
|
count_exm_add++;
|
||||||
await delay(1);
|
await delay(1);
|
||||||
} else {
|
} else {
|
||||||
iii = mesExamplesArray.length;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_pygmalion && Scenario && Scenario.length > 0) {
|
if (!is_pygmalion && Scenario && Scenario.length > 0) {
|
||||||
storyString += !power_user.disable_scenario_formatting ? `Circumstances and context of the dialogue: ${Scenario}\n` : `${Scenario}\n`;
|
storyString += !power_user.disable_scenario_formatting ? `Circumstances and context of the dialogue: ${Scenario}\n` : `${Scenario}\n`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let mesSend = [];
|
||||||
console.log('calling runGenerate');
|
console.log('calling runGenerate');
|
||||||
await runGenerate();
|
await runGenerate();
|
||||||
return;
|
|
||||||
}
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function runGenerate(cycleGenerationPromt = '') {
|
async function runGenerate(cycleGenerationPromt = '') {
|
||||||
is_send_press = true;
|
is_send_press = true;
|
||||||
@ -1666,7 +1655,7 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
console.log('generating prompt');
|
console.log('generating prompt');
|
||||||
chatString = "";
|
chatString = "";
|
||||||
arrMes = arrMes.reverse();
|
arrMes = arrMes.reverse();
|
||||||
var is_add_personality = false;
|
let is_add_personality = false;
|
||||||
arrMes.forEach(function (item, i, arr) {//For added anchors and others
|
arrMes.forEach(function (item, i, arr) {//For added anchors and others
|
||||||
|
|
||||||
if (i >= arrMes.length - 1 && $.trim(item).substr(0, (name1 + ":").length) != name1 + ":") {
|
if (i >= arrMes.length - 1 && $.trim(item).substr(0, (name1 + ":").length) != name1 + ":") {
|
||||||
@ -1675,7 +1664,6 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i === arrMes.length - topAnchorDepth && count_view_mes >= topAnchorDepth && !is_add_personality) {
|
if (i === arrMes.length - topAnchorDepth && count_view_mes >= topAnchorDepth && !is_add_personality) {
|
||||||
|
|
||||||
is_add_personality = true;
|
is_add_personality = true;
|
||||||
//chatString = chatString.substr(0,chatString.length-1);
|
//chatString = chatString.substr(0,chatString.length-1);
|
||||||
//anchorAndPersonality = "[Genre: roleplay chat][Tone: very long messages with descriptions]";
|
//anchorAndPersonality = "[Genre: roleplay chat][Tone: very long messages with descriptions]";
|
||||||
@ -1800,7 +1788,7 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
mesSendString = '<START>\n' + mesSendString;
|
mesSendString = '<START>\n' + mesSendString;
|
||||||
//mesSendString = mesSendString; //This edit simply removes the first "<START>" that is prepended to all context prompts
|
//mesSendString = mesSendString; //This edit simply removes the first "<START>" that is prepended to all context prompts
|
||||||
}
|
}
|
||||||
finalPromt = worldInfoBefore + storyString + worldInfoAfter + afterScenarioAnchor + mesExmString + mesSendString + generatedPromtCache + promptBias;
|
let finalPromt = worldInfoBefore + storyString + worldInfoAfter + afterScenarioAnchor + mesExmString + mesSendString + generatedPromtCache + promptBias;
|
||||||
|
|
||||||
if (zeroDepthAnchor && zeroDepthAnchor.length) {
|
if (zeroDepthAnchor && zeroDepthAnchor.length) {
|
||||||
if (!isMultigenEnabled() || tokens_already_generated == 0) {
|
if (!isMultigenEnabled() || tokens_already_generated == 0) {
|
||||||
@ -1859,9 +1847,9 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
this_amount_gen = Math.min(this_amount_gen, hordeAmountGen);
|
this_amount_gen = Math.min(this_amount_gen, hordeAmountGen);
|
||||||
}
|
}
|
||||||
|
|
||||||
var generate_data;
|
let generate_data;
|
||||||
if (main_api == 'kobold') {
|
if (main_api == 'kobold') {
|
||||||
var generate_data = {
|
generate_data = {
|
||||||
prompt: finalPromt,
|
prompt: finalPromt,
|
||||||
gui_settings: true,
|
gui_settings: true,
|
||||||
max_length: amount_gen,
|
max_length: amount_gen,
|
||||||
@ -1929,7 +1917,7 @@ async function Generate(type, automatic_trigger, force_name2) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
var generate_url = '';
|
let generate_url = '';
|
||||||
if (main_api == 'kobold') {
|
if (main_api == 'kobold') {
|
||||||
generate_url = '/generate';
|
generate_url = '/generate';
|
||||||
} else if (main_api == 'textgenerationwebui') {
|
} else if (main_api == 'textgenerationwebui') {
|
||||||
|
Reference in New Issue
Block a user