类 Graph<N, RunInput, RunOutput, NodeSpecType>

类型参数

层次结构 (查看全部)

构造函数

属性

branches: Record<string, Record<string, Branch<RunInput, N>>>
compiled: boolean
edges: Set<["__start__" | N, "__end__" | N]>
entryPoint?: string
nodes: Record<N, NodeSpecType>

访问器

  • get allEdges(): Set<[string, string]>
  • 返回 Set<[string, string]>

方法

  • 参数

    返回 this

  • 参数

    • source: N
    • path: ((input, config?) => string | Send | (string | Send)[] | Promise<string | Send | (string | Send)[]>)
        • (input, config?): string | Send | (string | Send)[] | Promise<string | Send | (string | Send)[]>
        • 参数

          • input: RunInput
          • 可选 config: RunnableConfig

          返回值 string | Send | (string | Send)[] | Promise<string | Send | (string | Send)[]>

    • 可选 pathMap: Record<string, "__end__" | N> | ("__end__" | N)[]

    返回 this

  • 参数

    • startKey: "__start__" | N
    • endKey: "__end__" | N

    返回 this

  • 参数

    • 可选 __namedParameters: {
          checkpointer?: BaseCheckpointSaver<number>;
          interruptAfter?: "*" | N[];
          interruptBefore?: "*" | N[];
      }
      • 可选 checkpointer?: BaseCheckpointSaver<number>
      • 可选 interruptAfter?: "*" | N[]
      • 可选 interruptBefore?: "*" | N[]

    返回值 CompiledGraph<N, any, any>

  • 参数

    • key: N

    返回 this

    已弃用

    请使用 addEdge(START, key) 代替

  • 参数

    • key: N

    返回 this

    已弃用

    请使用 addEdge(key, END) 代替

  • 参数

    • 可选 interrupt: string[]

    返回值 void

  • 参数

    • message: string

    返回值 void