Add reasoning template to connection profiles

This commit is contained in:
Cohee
2025-03-16 22:39:43 +02:00
parent 62342b35e2
commit d314752547

View File

@ -39,6 +39,7 @@ const CC_COMMANDS = [
'proxy', 'proxy',
'stop-strings', 'stop-strings',
'start-reply-with', 'start-reply-with',
'reasoning-template',
]; ];
const TC_COMMANDS = [ const TC_COMMANDS = [
@ -54,6 +55,7 @@ const TC_COMMANDS = [
'tokenizer', 'tokenizer',
'stop-strings', 'stop-strings',
'start-reply-with', 'start-reply-with',
'reasoning-template',
]; ];
const FANCY_NAMES = { const FANCY_NAMES = {
@ -70,6 +72,7 @@ const FANCY_NAMES = {
'tokenizer': 'Tokenizer', 'tokenizer': 'Tokenizer',
'stop-strings': 'Custom Stopping Strings', 'stop-strings': 'Custom Stopping Strings',
'start-reply-with': 'Start Reply With', 'start-reply-with': 'Start Reply With',
'reasoning-template': 'Reasoning Template',
}; };
/** /**
@ -154,6 +157,7 @@ const profilesProvider = () => [
* @property {string} [tokenizer] Tokenizer * @property {string} [tokenizer] Tokenizer
* @property {string} [stop-strings] Custom Stopping Strings * @property {string} [stop-strings] Custom Stopping Strings
* @property {string} [start-reply-with] Start Reply With * @property {string} [start-reply-with] Start Reply With
* @property {string} [reasoning-template] Reasoning Template
* @property {string[]} [exclude] Commands to exclude * @property {string[]} [exclude] Commands to exclude
*/ */