@threadplane/langgraph 0.0.55 → 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
|
@@ -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 —
|
|
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({
|
|
585
|
+
* providers: [provideFakeAgent({ tokens: ['Hi from the fake LangGraph agent'] })],
|
|
586
586
|
* });
|
|
587
587
|
* ```
|
|
588
588
|
*/
|