parse_answer_with_prefixes#
- langchain_cohere.react_multi_hop.parsing.parse_answer_with_prefixes(completion: str, prefixes: Dict[str, str]) Dict[str, str] [source]#
- parses string into key-value pairs,
根据前缀中提供的模式。同时去除。
- if inputs are:
完成 = “
你好: sam 再见: paul.”,
前缀 = {“问候”: “你好:”, “告别”: “再见:”}
- the expected returned result is:
{“greeting”: “sam”, “farewell”: “paul.”}
- Args:
completion (str): 要分割的文本 prefixes (Dict[str, str]): 键和模式的键值字典。 参见上面的示例
- Returns:
Dict[str, str]: 解析结果
- Parameters:
completion (str)
prefixes (Dict[str, str])
- Return type:
字典[str, str]