Skip to content

Commit 931fc78

Browse files
committed
move separator
1 parent 4033032 commit 931fc78

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/services/ghost/strategies/BasePromptStrategy.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export abstract class BasePromptStrategy implements PromptStrategy {
3131
const baseInstructions = this.getBaseSystemInstructions()
3232
const specificInstructions = this.getSpecificSystemInstructions()
3333

34-
return `${baseInstructions}\n\n---\n\n${specificInstructions}`
34+
return `${baseInstructions}${specificInstructions}`
3535
}
3636

3737
/**
@@ -71,7 +71,11 @@ EXAMPLE:
7171
// old code
7272
}]]></search><replace><![CDATA[function example() {
7373
// new code
74-
}]]></replace></change>`
74+
}]]></replace></change>
75+
76+
--
77+
78+
`
7579
}
7680

7781
/**

0 commit comments

Comments
 (0)