langchain_core.utils.iter.batch_iterate

langchain_core.utils.iter.batch_iterate(size: Optional[int], iterable: Iterable[T]) Iterator[List[T]][source]

工具批量函数。

参数
  • size (可选[int]) – 批量的大小。如果为 None,返回一个单独的批次。

  • iterable (可迭代对象[T]) – 要批量的可迭代对象。

生成

可迭代对象的批次。

返回类型

迭代器[列表[T]]