@threadplane/langgraph 0.0.58 → 0.0.59

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@threadplane/langgraph",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "LangGraph adapter for @threadplane/chat — Angular bindings for LangGraph Platform.",
5
5
  "keywords": [
6
6
  "angular",
@@ -204,8 +204,6 @@ interface AgentOptions<T, _ResolvedBag extends BagTemplate> {
204
204
  clientOptions?: LangGraphClientOptions;
205
205
  /** Optional app-owned telemetry sink. No telemetry is emitted unless this is provided. */
206
206
  telemetry?: AgentRuntimeTelemetrySink | false;
207
- /** When true, subagent messages are filtered from the main messages signal. */
208
- filterSubagentMessages?: boolean;
209
207
  /** Tool names that indicate a subagent invocation. */
210
208
  subagentToolNames?: string[];
211
209
  /**
@@ -223,6 +221,8 @@ interface AgentOptions<T, _ResolvedBag extends BagTemplate> {
223
221
  /**
224
222
  * LangGraph node names whose `messages-tuple` LLM chunks should be projected
225
223
  * into the main chat transcript. Omit to accept all top-level message chunks.
224
+ * Child-graph (namespaced) chunks never reach the transcript regardless of
225
+ * this option — they belong to their child stream in `subagents()`.
226
226
  *
227
227
  * Use this when a graph has side-effect LLM nodes, such as title generation,
228
228
  * whose streamed model output should not render as assistant chat content.
@@ -351,13 +351,13 @@ interface AgentConfig<T = Record<string, unknown>, _Bag extends BagTemplate = Ba
351
351
  clientOptions?: LangGraphClientOptions;
352
352
  /** Optional app-owned telemetry sink. No telemetry is emitted unless this is provided. */
353
353
  telemetry?: AgentRuntimeTelemetrySink | false;
354
- /** When true, subagent messages are filtered from the main messages signal. */
355
- filterSubagentMessages?: boolean;
356
354
  /** Tool names that indicate a subagent invocation. */
357
355
  subagentToolNames?: string[];
358
356
  /**
359
357
  * LangGraph node names whose `messages-tuple` LLM chunks should be projected
360
358
  * into the main chat transcript. Omit to accept all top-level message chunks.
359
+ * Child-graph (namespaced) chunks never reach the transcript regardless of
360
+ * this option — they belong to their child stream in `subagents()`.
361
361
  */
362
362
  transcriptNodeNames?: string[];
363
363
  }