@threadplane/langgraph 0.0.56 → 0.0.57
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,14 @@ 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
|
+
* LangGraph node names whose `messages-tuple` LLM chunks should be projected
|
|
213
|
+
* into the main chat transcript. Omit to accept all top-level message chunks.
|
|
214
|
+
*
|
|
215
|
+
* Use this when a graph has side-effect LLM nodes, such as title generation,
|
|
216
|
+
* whose streamed model output should not render as assistant chat content.
|
|
217
|
+
*/
|
|
218
|
+
transcriptNodeNames?: string[];
|
|
211
219
|
}
|
|
212
220
|
/** Reference to a subagent's streaming state. */
|
|
213
221
|
interface SubagentStreamRef {
|
|
@@ -335,6 +343,11 @@ interface AgentConfig<T = Record<string, unknown>, _Bag extends BagTemplate = Ba
|
|
|
335
343
|
filterSubagentMessages?: boolean;
|
|
336
344
|
/** Tool names that indicate a subagent invocation. */
|
|
337
345
|
subagentToolNames?: string[];
|
|
346
|
+
/**
|
|
347
|
+
* LangGraph node names whose `messages-tuple` LLM chunks should be projected
|
|
348
|
+
* into the main chat transcript. Omit to accept all top-level message chunks.
|
|
349
|
+
*/
|
|
350
|
+
transcriptNodeNames?: string[];
|
|
338
351
|
}
|
|
339
352
|
/**
|
|
340
353
|
* Wire the LangGraph adapter into Angular's dependency injection.
|