Skip to content

Commit f0ba638

Browse files
authored
Merge pull request #1757 from xKevIsDev/main
refactor: improve fine-tuned prompt to reduce token usage and set as default
2 parents 5e590aa + 71f0378 commit f0ba638

File tree

2 files changed

+224
-637
lines changed

2 files changed

+224
-637
lines changed

app/lib/common/prompt-library.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ export class PromptLibrary {
2929
> = {
3030
default: {
3131
label: 'Default Prompt',
32-
description: 'This is the battle tested default system Prompt',
33-
get: (options) => getSystemPrompt(options.cwd, options.supabase, options.designScheme),
34-
},
35-
enhanced: {
36-
label: 'Fine Tuned Prompt',
37-
description: 'An fine tuned prompt for better results',
32+
description: 'An fine tuned prompt for better results and less token usage',
3833
get: (options) => getFineTunedPrompt(options.cwd, options.supabase, options.designScheme),
3934
},
35+
original: {
36+
label: 'Old Default Prompt',
37+
description: 'The OG battle tested default system Prompt',
38+
get: (options) => getSystemPrompt(options.cwd, options.supabase, options.designScheme),
39+
},
4040
optimized: {
4141
label: 'Optimized Prompt (experimental)',
42-
description: 'an Experimental version of the prompt for lower token usage',
42+
description: 'An Experimental version of the prompt for lower token usage',
4343
get: (options) => optimized(options),
4444
},
4545
};

0 commit comments

Comments
 (0)