@threadplane/langgraph 0.0.54 → 0.0.56

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.54",
3
+ "version": "0.0.56",
4
4
  "description": "LangGraph adapter for @threadplane/chat — Angular bindings for LangGraph Platform.",
5
5
  "keywords": [
6
6
  "angular",
@@ -405,8 +405,8 @@ declare function injectAgent<T, ResolvedBag extends BagTemplate = BagTemplate>(r
405
405
  * an Angular injection context. External instrumentation packages
406
406
  * (e.g. cockpit-telemetry) provide this token and read from it.
407
407
  *
408
- * `@threadplane/langgraph` does NOT provide this itself — `agent()` writes to
409
- * the registry only when an external consumer has provided it.
408
+ * `@threadplane/langgraph` does NOT provide this itself — the configured agent
409
+ * instance writes to the registry only when an external consumer has provided it.
410
410
  */
411
411
  declare class AgentLifecycleRegistry {
412
412
  private readonly _lifecycles;
@@ -582,7 +582,7 @@ declare function mockLangGraphAgent(initial?: MockAgentOptions & {
582
582
  * @example
583
583
  * ```ts
584
584
  * TestBed.configureTestingModule({
585
- * providers: [provideFakeAgent({ responses: ['Hi from the fake LangGraph agent'] })],
585
+ * providers: [provideFakeAgent({ tokens: ['Hi from the fake LangGraph agent'] })],
586
586
  * });
587
587
  * ```
588
588
  */