@creature-ai/sdk 0.1.11 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -184,6 +184,12 @@ interface ToolResult {
184
184
  inlineHeight?: number;
185
185
  /** Whether this is an error result */
186
186
  isError?: boolean;
187
+ /**
188
+ * Skip widget creation for this tool call.
189
+ * When true, no PIP/panel is created even if the tool has a `ui` configured.
190
+ * Use for read-only operations (read, list, delete) that shouldn't open UI.
191
+ */
192
+ noWidget?: boolean;
187
193
  }
188
194
  /**
189
195
  * Tool handler function type.