@threadplane/langgraph 0.0.57 → 0.0.58
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.
package/package.json
CHANGED
|
@@ -208,6 +208,18 @@ interface AgentOptions<T, _ResolvedBag extends BagTemplate> {
|
|
|
208
208
|
filterSubagentMessages?: boolean;
|
|
209
209
|
/** Tool names that indicate a subagent invocation. */
|
|
210
210
|
subagentToolNames?: string[];
|
|
211
|
+
/**
|
|
212
|
+
* A2UI client capabilities (catalog negotiation) to advertise to the graph.
|
|
213
|
+
* When set, every plain-object run payload carries them under the
|
|
214
|
+
* `a2ui_client_capabilities` state key — mirroring how `client_tools`
|
|
215
|
+
* rides the payload. Read server-side via threadplane-middleware's
|
|
216
|
+
* `a2ui_client_capabilities(state)`. Use `@threadplane/chat`'s
|
|
217
|
+
* `a2uiClientCapabilities()` for the renderer's standard value.
|
|
218
|
+
*/
|
|
219
|
+
a2uiClientCapabilities?: {
|
|
220
|
+
supportedCatalogIds: string[];
|
|
221
|
+
inlineCatalogs?: unknown[];
|
|
222
|
+
};
|
|
211
223
|
/**
|
|
212
224
|
* LangGraph node names whose `messages-tuple` LLM chunks should be projected
|
|
213
225
|
* into the main chat transcript. Omit to accept all top-level message chunks.
|