ds2api / internal /promptcompat /thinking_injection.go
204848
Initial commit: ds2api with HF Spaces support
feccc69
Raw
History Blame Contribute Delete
568 Bytes
package promptcompat
const (
ThinkingInjectionMarker = "Reason carefully and provide a thorough response."
DefaultThinkingInjectionPrompt = ThinkingInjectionMarker + "\n" +
"Think step by step, cover edge cases, and verify your reasoning before concluding.\n" +
"Explain the key steps you took to reach the final answer."
)
func AppendThinkingInjectionToLatestUser(messages []any) ([]any, bool) {
return messages, false
}
func AppendThinkingInjectionPromptToLatestUser(messages []any, injectionPrompt string) ([]any, bool) {
return messages, false
}