ai: call enhancements prompt cuz it's bad sometimes

This commit is contained in:
end-4 2025-03-30 23:53:08 +02:00
parent 6429d03756
commit 1d8ccda5e3
2 changed files with 4 additions and 4 deletions

View file

@ -170,7 +170,7 @@ const GPTSettings = () => MarginRevealer({
{ value: 0.50, name: getString('Balanced'), },
{ value: 1.00, name: getString('Creative'), },
],
initIndex: 2,
initIndex: 1,
onChange: (value, name) => {
GPTService.temperature = value;
},
@ -183,7 +183,7 @@ const GPTSettings = () => MarginRevealer({
children: [
ConfigToggle({
icon: 'model_training',
name: getString('Enhancements'),
name: getString('Prompt'),
desc: getString('Tells the model:\n- It\'s a Linux sidebar assistant\n- Be brief and use bullet points'),
initValue: GPTService.assistantPrompt,
onChange: (self, newValue) => {

View file

@ -83,7 +83,7 @@ export const GeminiSettings = () => MarginRevealer({
{ value: 0.50, name: getString('Balanced'), },
{ value: 1.00, name: getString('Creative'), },
],
initIndex: 2,
initIndex: 1,
onChange: (value, name) => {
GeminiService.temperature = value;
},
@ -96,7 +96,7 @@ export const GeminiSettings = () => MarginRevealer({
children: [
ConfigToggle({
icon: 'model_training',
name: getString('Enhancements'),
name: getString('Prompt'),
desc: getString("Tells Gemini:\n- It's a Linux sidebar assistant\n- Be brief and use bullet points"),
initValue: GeminiService.assistantPrompt,
onChange: (self, newValue) => {