We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c658719 commit 4033032Copy full SHA for 4033032
src/services/ghost/strategies/BasePromptStrategy.ts
@@ -27,13 +27,11 @@ export abstract class BasePromptStrategy implements PromptStrategy {
27
/**
28
* Generates system instructions for the AI model
29
*/
30
- getSystemInstructions(customInstructions?: string): string {
+ getSystemInstructions(): string {
31
const baseInstructions = this.getBaseSystemInstructions()
32
const specificInstructions = this.getSpecificSystemInstructions()
33
34
- return `${baseInstructions}\n\n---\n\n${specificInstructions}${
35
- customInstructions ? `\n\n---\n\n${customInstructions}` : ""
36
- }`
+ return `${baseInstructions}\n\n---\n\n${specificInstructions}`
37
}
38
39
0 commit comments