docs(coding-agent): fix obsolete extension UI examples closes #6735

This commit is contained in:
Mario Zechner
2026-07-17 09:35:48 +02:00
parent e5e8726836
commit 58575888f5
4 changed files with 49 additions and 30 deletions
@@ -162,7 +162,7 @@ export default function (pi: ExtensionAPI) {
parameters: Type.Object({
name: Type.String({ description: "Name to greet" }),
}),
async execute(toolCallId, params, onUpdate, ctx, signal) {
async execute(toolCallId, params, signal, onUpdate, ctx) {
return {
content: [{ type: "text", text: `Hello, ${params.name}!` }],
details: {},