langchain_core.runnables.graph
.Branch¶
- class langchain_core.runnables.graph.Branch(condition: Callable[..., str], ends: Optional[dict[str, str]])[源代码]¶
图中的分支。
- 参数
condition (Callable[...], str]) – 返回条件字符串表示的可调用对象。
ends (Optional[dict[str, str]]) – 分支的末节点ID的可选字典。默认为None。
创建Branch(condition, ends)的新实例
属性
condition
字段编号0的别名
ends
字段编号1的别名
方法
__init__
()count
(value, /)返回value出现的次数。
index
(value[, start, stop])返回value的第一个索引。
- __init__()¶
- count(value, /)¶
返回value出现的次数。
- index(value, start=0, stop=9223372036854775807, /)¶
返回value的第一个索引。
如果值不存在,则抛出ValueError。