Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* __LC_ALLOW_ENTRYPOINT_SIDE_EFFECTS__ */
- import {
- Client,
- ClientConfig,
- Command,
- Config,
- CustomStreamEvent,
- DebugStreamEvent,
- EventsStreamEvent,
- MetadataStreamEvent,
- ThreadState,
- UpdatesStreamEvent,
- } from '@langchain/langgraph-sdk';
- export type MessageMetadata<StateType extends Record<string, unknown>> = {
- /**
- * The ID of the message used.
- */
- messageId: string;
- /**
- * The first thread state the message was seen in.
- */
- firstSeenState: ThreadState<StateType> | undefined;
- /**
- * The branch of the message.
- */
- branch: string | undefined;
- /**
- * The list of branches this message is part of.
- * This is useful for displaying branching controls.
- */
- branchOptions: string[] | undefined;
- /**
- * Metadata sent alongside the message during run streaming.
- * @remarks This metadata only exists temporarily in browser memory during streaming and is not persisted after completion.
- */
- streamMetadata: Record<string, unknown> | undefined;
- };
- export type BagTemplate = {
- ConfigurableType?: Record<string, unknown>;
- InterruptType?: unknown;
- CustomEventType?: unknown;
- UpdateType?: unknown;
- };
- export type GetUpdateType<
- Bag extends BagTemplate,
- StateType extends Record<string, unknown>,
- > = Bag extends { UpdateType: unknown }
- ? Bag['UpdateType']
- : Partial<StateType>;
- export type GetConfigurableType<Bag extends BagTemplate> = Bag extends {
- ConfigurableType: Record<string, unknown>;
- }
- ? Bag['ConfigurableType']
- : Record<string, unknown>;
- export type GetInterruptType<Bag extends BagTemplate> = Bag extends {
- InterruptType: unknown;
- }
- ? Bag['InterruptType']
- : unknown;
- export type GetCustomEventType<Bag extends BagTemplate> = Bag extends {
- CustomEventType: unknown;
- }
- ? Bag['CustomEventType']
- : unknown;
- export interface RunCallbackMeta {
- run_id: string;
- thread_id: string;
- }
- export interface UseStreamThread<StateType extends Record<string, unknown>> {
- data: ThreadState<StateType>[] | null | undefined;
- error: unknown;
- isLoading: boolean;
- mutate: (
- mutateId?: string,
- ) => Promise<ThreadState<StateType>[] | null | undefined>;
- }
- type ConfigWithConfigurable<ConfigurableType extends Record<string, unknown>> =
- Config & { configurable?: ConfigurableType };
- /**
- * Transport used to stream the thread.
- * Only applicable for custom endpoints using `toLangGraphEventStream` or `toLangGraphEventStreamResponse`.
- */
- export interface UseStreamTransport<
- StateType extends Record<string, unknown> = Record<string, unknown>,
- Bag extends BagTemplate = BagTemplate,
- > {
- stream: (payload: {
- input: GetUpdateType<Bag, StateType> | null | undefined;
- context: GetConfigurableType<Bag> | undefined;
- command: Command | undefined;
- config: ConfigWithConfigurable<GetConfigurableType<Bag>> | undefined;
- signal: AbortSignal;
- }) => Promise<AsyncGenerator<{ id?: string; event: string; data: unknown }>>;
- }
Advertisement
Add Comment
Please, Sign In to add comment