We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe6485 commit e6f5d09Copy full SHA for e6f5d09
backend/src/tools/definitions/tool/end-turn.ts
@@ -13,7 +13,15 @@ Only use this tool to hand control back to the user.
13
- Before calling: finish all pending steps, resolve tool results, and include any outputs the user needs to review.
14
- Effect: Signals the UI to wait for the user's reply; any pending tool results will be ignored.
15
16
-Correct usage:
+*INCORRECT USAGE*:
17
+${getToolCallString('some_tool_that_produces_results', { query: 'some example search term' }, false)}
18
+
19
${getToolCallString(toolName, {})}
20
21
+*CORRECT USAGE*:
22
+All done! Would you like some more help with xyz?
23
24
+${getToolCallString(toolName, {})}
25
26
`.trim(),
27
} satisfies ToolDescription
0 commit comments