Add reasoning template to connection profiles
| @@ -39,6 +39,7 @@ const CC_COMMANDS = [ | ||
| 39 | 39 | 'proxy', |
| 40 | 40 | 'stop-strings', |
| 41 | 41 | 'start-reply-with', |
| 42 | + 'reasoning-template', | |
| 42 | 43 | ]; |
| 43 | 44 | |
| 44 | 45 | const TC_COMMANDS = [ |
| @@ -54,6 +55,7 @@ const TC_COMMANDS = [ | ||
| 54 | 55 | 'tokenizer', |
| 55 | 56 | 'stop-strings', |
| 56 | 57 | 'start-reply-with', |
| 58 | + 'reasoning-template', | |
| 57 | 59 | ]; |
| 58 | 60 | |
| 59 | 61 | const FANCY_NAMES = { |
| @@ -70,6 +72,7 @@ const FANCY_NAMES = { | ||
| 70 | 72 | 'tokenizer': 'Tokenizer', |
| 71 | 73 | 'stop-strings': 'Custom Stopping Strings', |
| 72 | 74 | 'start-reply-with': 'Start Reply With', |
| 75 | + 'reasoning-template': 'Reasoning Template', | |
| 73 | 76 | }; |
| 74 | 77 | |
| 75 | 78 | /** |
| @@ -154,6 +157,7 @@ const profilesProvider = () => [ | ||
| 154 | 157 | * @property {string} [tokenizer] Tokenizer |
| 155 | 158 | * @property {string} [stop-strings] Custom Stopping Strings |
| 156 | 159 | * @property {string} [start-reply-with] Start Reply With |
| 160 | + * @property {string} [reasoning-template] Reasoning Template | |
| 157 | 161 | * @property {string[]} [exclude] Commands to exclude |
| 158 | 162 | */ |
| 159 | 163 | |