mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Add autocomplete for slash commands
This commit is contained in:
@ -119,19 +119,9 @@ const promptTemplates = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const helpString = [
|
const helpString = [
|
||||||
`${m('(argument)')} – requests SD to make an image. Supported arguments:`,
|
`${m('(argument)')} – requests SD to make an image. Supported arguments: ${m(j(Object.values(triggerWords).flat()))}.`,
|
||||||
'<ul>',
|
`Anything else would trigger a "free mode" to make SD generate whatever you prompted. Example: '/sd apple tree' would generate a picture of an apple tree.`,
|
||||||
`<li>${m(j(triggerWords[generationMode.CHARACTER]))} – AI character full body selfie</li>`,
|
].join(' ');
|
||||||
`<li>${m(j(triggerWords[generationMode.FACE]))} – AI character face-only selfie</li>`,
|
|
||||||
`<li>${m(j(triggerWords[generationMode.USER]))} – user character full body selfie</li>`,
|
|
||||||
`<li>${m(j(triggerWords[generationMode.SCENARIO]))} – visual recap of the whole chat scenario</li>`,
|
|
||||||
`<li>${m(j(triggerWords[generationMode.NOW]))} – visual recap of the last chat message</li>`,
|
|
||||||
`<li>${m(j(triggerWords[generationMode.RAW_LAST]))} – visual recap of the last chat message with no summary</li>`,
|
|
||||||
`<li>${m(j(triggerWords[generationMode.BACKGROUND]))} – generate a background for this chat based on the chat's context</li>`,
|
|
||||||
'</ul>',
|
|
||||||
`Anything else would trigger a "free mode" to make SD generate whatever you prompted.<Br>
|
|
||||||
example: '/sd apple tree' would generate a picture of an apple tree.`,
|
|
||||||
].join('<br>');
|
|
||||||
|
|
||||||
const defaultPrefix = 'best quality, absurdres, aesthetic,';
|
const defaultPrefix = 'best quality, absurdres, aesthetic,';
|
||||||
const defaultNegative = 'lowres, bad anatomy, bad hands, text, error, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry';
|
const defaultNegative = 'lowres, bad anatomy, bad hands, text, error, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry';
|
||||||
|
@ -41,7 +41,7 @@ export {
|
|||||||
class SlashCommandParser {
|
class SlashCommandParser {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.commands = {};
|
this.commands = {};
|
||||||
this.helpStrings = [];
|
this.helpStrings = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
addCommand(command, callback, aliases, helpString = '', interruptsGeneration = false, purgeFromMessage = true) {
|
addCommand(command, callback, aliases, helpString = '', interruptsGeneration = false, purgeFromMessage = true) {
|
||||||
@ -64,7 +64,7 @@ class SlashCommandParser {
|
|||||||
let aliasesString = `(alias: ${aliases.map(x => `<span class="monospace">/${x}</span>`).join(', ')})`;
|
let aliasesString = `(alias: ${aliases.map(x => `<span class="monospace">/${x}</span>`).join(', ')})`;
|
||||||
stringBuilder += aliasesString;
|
stringBuilder += aliasesString;
|
||||||
}
|
}
|
||||||
this.helpStrings.push(stringBuilder);
|
this.helpStrings[command] = stringBuilder;
|
||||||
}
|
}
|
||||||
|
|
||||||
parse(text) {
|
parse(text) {
|
||||||
@ -108,7 +108,12 @@ class SlashCommandParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getHelpString() {
|
getHelpString() {
|
||||||
const listItems = this.helpStrings.map(x => `<li>${x}</li>`).join('\n');
|
const listItems = Object
|
||||||
|
.entries(this.helpStrings)
|
||||||
|
.sort((a, b) => a[0].localeCompare(b[0]))
|
||||||
|
.map(x => x[1])
|
||||||
|
.map(x => `<li>${x}</li>`)
|
||||||
|
.join('\n');
|
||||||
return `<p>Slash commands:</p><ol>${listItems}</ol>
|
return `<p>Slash commands:</p><ol>${listItems}</ol>
|
||||||
<small>Slash commands can be batched into a single input by adding a pipe character | at the end, and then writing a new slash command.</small>
|
<small>Slash commands can be batched into a single input by adding a pipe character | at the end, and then writing a new slash command.</small>
|
||||||
<ul><li><small>Example:</small><code>/cut 1 | /sys Hello, | /continue</code></li>
|
<ul><li><small>Example:</small><code>/cut 1 | /sys Hello, | /continue</code></li>
|
||||||
@ -717,3 +722,42 @@ function executeSlashCommands(text) {
|
|||||||
|
|
||||||
return { interrupt, newText };
|
return { interrupt, newText };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setSlashCommandAutocomplete(textarea) {
|
||||||
|
textarea.autocomplete({
|
||||||
|
source: (input, output) => {
|
||||||
|
// Only show for slash commands and if there's no space
|
||||||
|
if (!input.term.startsWith('/') || input.term.includes(' ')) {
|
||||||
|
output([]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const slashCommand = input.term.toLowerCase().substring(1); // Remove the slash
|
||||||
|
const result = Object
|
||||||
|
.keys(parser.helpStrings) // Get all slash commands
|
||||||
|
.filter(x => x.startsWith(slashCommand)) // Filter by the input
|
||||||
|
.sort((a, b) => a.localeCompare(b)) // Sort alphabetically
|
||||||
|
// .slice(0, 20) // Limit to 20 results
|
||||||
|
.map(x => ({ label: parser.helpStrings[x], value: `/${x} ` })); // Map to the help string
|
||||||
|
|
||||||
|
output(result); // Return the results
|
||||||
|
},
|
||||||
|
select: (e, u) => {
|
||||||
|
// unfocus the input
|
||||||
|
$(e.target).val(u.item.value);
|
||||||
|
},
|
||||||
|
minLength: 1,
|
||||||
|
position: { my: "left bottom", at: "left top", collision: "none" },
|
||||||
|
});
|
||||||
|
|
||||||
|
textarea.autocomplete("instance")._renderItem = function (ul, item) {
|
||||||
|
const width = $(textarea).innerWidth();
|
||||||
|
const content = $('<div></div>').html(item.label);
|
||||||
|
return $("<li>").width(width).append(content).appendTo(ul);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
jQuery(function () {
|
||||||
|
const textarea = $('#send_textarea');
|
||||||
|
setSlashCommandAutocomplete(textarea);
|
||||||
|
})
|
||||||
|
@ -2820,7 +2820,7 @@ body .ui-widget-content li {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
transition: all 200ms;
|
transition: opacity 200ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
body .ui-widget-content li:hover {
|
body .ui-widget-content li:hover {
|
||||||
|
Reference in New Issue
Block a user