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 4033032 commit 931fc78Copy full SHA for 931fc78
src/services/ghost/strategies/BasePromptStrategy.ts
@@ -31,7 +31,7 @@ export abstract class BasePromptStrategy implements PromptStrategy {
31
const baseInstructions = this.getBaseSystemInstructions()
32
const specificInstructions = this.getSpecificSystemInstructions()
33
34
- return `${baseInstructions}\n\n---\n\n${specificInstructions}`
+ return `${baseInstructions}${specificInstructions}`
35
}
36
37
/**
@@ -71,7 +71,11 @@ EXAMPLE:
71
// old code
72
}]]></search><replace><![CDATA[function example() {
73
// new code
74
-}]]></replace></change>`
+}]]></replace></change>
75
+
76
+--
77
78
+`
79
80
81
0 commit comments