Change getAllTools() to return ToolInfo[] instead of string[]

Breaking change: pi.getAllTools() now returns Array<{ name, description }>
instead of string[]. Extensions needing just names can use .map(t => t.name).

Removes redundant getToolInfo() method added in original PR.

Fixes #647
This commit is contained in:
Mario Zechner 2026-01-12 17:16:36 +01:00
parent 34ecca352e
commit 1367a76ee8
12 changed files with 34 additions and 19 deletions

View file

@ -79,6 +79,7 @@ export type {
SessionTreeEvent,
ToolCallEvent,
ToolDefinition,
ToolInfo,
ToolRenderResultOptions,
ToolResultEvent,
TurnEndEvent,