| 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 | |
| } | |