2
0
Mark IJbema 5 сар өмнө
parent
commit
931fc78fd1

+ 6 - 2
src/services/ghost/strategies/BasePromptStrategy.ts

@@ -31,7 +31,7 @@ export abstract class BasePromptStrategy implements PromptStrategy {
 		const baseInstructions = this.getBaseSystemInstructions()
 		const specificInstructions = this.getSpecificSystemInstructions()
 
-		return `${baseInstructions}\n\n---\n\n${specificInstructions}`
+		return `${baseInstructions}${specificInstructions}`
 	}
 
 	/**
@@ -71,7 +71,11 @@ EXAMPLE:
 	 // old code
 }]]></search><replace><![CDATA[function example() {
 	 // new code
-}]]></replace></change>`
+}]]></replace></change>
+
+--
+
+`
 	}
 
 	/**