aget_prompts#
- async langchain_core.language_models.llms.aget_prompts(params: dict[str, Any], prompts: list[str], cache: BaseCache | bool | None = None) tuple[dict[int, list], str, list[int], list[str]] [来源]#
获取已经缓存的提示。异步版本。
- Parameters:
params (dict[str, Any]) – 参数字典。
prompts (list[str]) – 提示列表。
cache (BaseCache | bool | None) – 缓存对象。默认为 None。
- Returns:
- 现有提示、llm_string、缺失提示索引的元组,
以及缺失的提示。
- Raises:
ValueError – 如果缓存未设置且缓存为True。
- Return type:
元组[字典[int, 列表], 字符串, 列表[int], 列表[字符串]]