@langchain/langgraph 0.2.43-rc.1 → 0.2.43
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/dist/channels/index.d.ts +0 -1
- package/dist/pregel/index.d.ts +4 -0
- package/dist/web.d.ts +3 -1
- package/package.json +1 -1
package/dist/channels/index.d.ts
CHANGED
|
@@ -5,4 +5,3 @@ export type { WaitForNames, DynamicBarrierValue, } from "./dynamic_barrier_value
|
|
|
5
5
|
export type { LastValue } from "./last_value.js";
|
|
6
6
|
export type { NamedBarrierValue } from "./named_barrier_value.js";
|
|
7
7
|
export type { Topic } from "./topic.js";
|
|
8
|
-
export type { EphemeralValue } from "./ephemeral_value.js";
|
package/dist/pregel/index.d.ts
CHANGED
|
@@ -24,6 +24,10 @@ export declare class Channel {
|
|
|
24
24
|
export type { PregelInputType, PregelOutputType, PregelOptions };
|
|
25
25
|
export declare class Pregel<Nn extends StrRecord<string, PregelNode>, Cc extends StrRecord<string, BaseChannel | ManagedValueSpec>, ConfigurableFieldType extends Record<string, any> = StrRecord<string, any>, InputType = PregelInputType, OutputType = PregelOutputType> extends Runnable<InputType | Command | null, OutputType, PregelOptions<Nn, Cc, ConfigurableFieldType>> implements PregelInterface<Nn, Cc, ConfigurableFieldType>, PregelParams<Nn, Cc> {
|
|
26
26
|
static lc_name(): string;
|
|
27
|
+
/** @internal Used for type inferrence */
|
|
28
|
+
"~InputType": InputType;
|
|
29
|
+
/** @internal Used for type inferrence */
|
|
30
|
+
"~OutputType": OutputType;
|
|
27
31
|
lc_namespace: string[];
|
|
28
32
|
lg_is_pregel: boolean;
|
|
29
33
|
nodes: Nn;
|
package/dist/web.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export { Graph, type StateGraphArgs, StateGraph, CompiledStateGraph, MessageGraph, messagesStateReducer, messagesStateReducer as addMessages, type Messages, Annotation, type StateType, type UpdateType, type NodeType, type StateDefinition, type SingleReducer, type CompiledGraph, } from "./graph/index.js";
|
|
2
2
|
export type { StateSnapshot, StreamMode, PregelParams, PregelOptions, } from "./pregel/types.js";
|
|
3
3
|
export type { PregelNode } from "./pregel/read.js";
|
|
4
|
+
export type { Pregel } from "./pregel/index.js";
|
|
4
5
|
export * from "./errors.js";
|
|
5
|
-
export { BaseChannel, type BinaryOperator, BinaryOperatorAggregate, type AnyValue, type WaitForNames, type DynamicBarrierValue, type LastValue, type NamedBarrierValue, type Topic,
|
|
6
|
+
export { BaseChannel, type BinaryOperator, BinaryOperatorAggregate, type AnyValue, type WaitForNames, type DynamicBarrierValue, type LastValue, type NamedBarrierValue, type Topic, } from "./channels/index.js";
|
|
7
|
+
export type { EphemeralValue } from "./channels/ephemeral_value.js";
|
|
6
8
|
export { type AnnotationRoot as _INTERNAL_ANNOTATION_ROOT } from "./graph/index.js";
|
|
7
9
|
export { type RetryPolicy } from "./pregel/utils/index.js";
|
|
8
10
|
export { Send, Command, type CommandParams, isCommand, START, END, type Interrupt, } from "./constants.js";
|