Skip to content

Commit 4033032

Browse files
committed
remove unused feature
1 parent c658719 commit 4033032

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/services/ghost/strategies/BasePromptStrategy.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ export abstract class BasePromptStrategy implements PromptStrategy {
2727
/**
2828
* Generates system instructions for the AI model
2929
*/
30-
getSystemInstructions(customInstructions?: string): string {
30+
getSystemInstructions(): string {
3131
const baseInstructions = this.getBaseSystemInstructions()
3232
const specificInstructions = this.getSpecificSystemInstructions()
3333

34-
return `${baseInstructions}\n\n---\n\n${specificInstructions}${
35-
customInstructions ? `\n\n---\n\n${customInstructions}` : ""
36-
}`
34+
return `${baseInstructions}\n\n---\n\n${specificInstructions}`
3735
}
3836

3937
/**

0 commit comments

Comments
 (0)