mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
- Add planning mode toggle and AskUserQuestion function for interactive planning - Fix Gemini cross-provider function call detection using toolId presence - Update OpenAI naming service to handle new response format - Improve system prompts by removing complexity gate, streamlining to action-first principle - Add InputDisplay component and question mode to ChatInput - Refactor execution plan error messages to show all incomplete steps - Update tests to reflect cross-provider function call format changes
8 lines
No EOL
384 B
TypeScript
8 lines
No EOL
384 B
TypeScript
// Appended to the system prompt when planning mode is enabled
|
|
export const PlanningEnabledAppendix = `
|
|
<planning_mode>
|
|
Planning mode is ENABLED. You MUST request a plan before executing any other tools.
|
|
|
|
Do not execute actions directly—first create a strategic plan that will be reviewed and approved. Once you receive an approved plan, execute it step by step.
|
|
</planning_mode>
|
|
`; |