mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
ai: call enhancements prompt cuz it's bad sometimes
This commit is contained in:
parent
6429d03756
commit
1d8ccda5e3
2 changed files with 4 additions and 4 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue