langchain_core.language_models.llms.update_cache

langchain_core.language_models.llms.update_cache(cache: Optional[Union[BaseCache, bool]], existing_prompts: Dict[int, List], llm_string: str, missing_prompt_idxs: List[int], new_results: LLMResult, prompts: List[str]) Optional[dict]

更新缓存并获取LLM输出。

参数
  • cache (Optional[Union[BaseCache, bool]]) – 缓存对象。

  • existing_prompts (Dict[int, List]) – 已存在提示的字典。

  • llm_string (str) – LLM字符串。

  • missing_prompt_idxs (List[int]) – 缺失提示的下标列表。

  • new_results (LLMResult) – LLMResult对象。

  • prompts (List[str]) – 提示列表。

返回

LLM输出。

异常

ValueError – 如果缓存未设置且缓存为True。

返回类型

Optional[dict]