langchain_cohere.react_multi_hop.parsing
.parse_answer_with_prefixes¶
- langchain_cohere.react_multi_hop.parsing.parse_answer_with_prefixes(completion: str, prefixes: Dict[str, str]) Dict[str, str] [源代码]¶
- 将字符串解析为键值对,
根据prefixes中提供的模式。同时去除。
- 如果输入是
completion = “
hello: sam goodbye then: paul.”,
prefixes = {“greeting”: “hello:”, “farewell”: “goodbye then:”}
- 预期的返回结果是
{“greeting”: “sam”, “farewell”: “paul.”}
- 参数
completion (str): 用于分割前缀的文本(Dict[str, str]: 键和模式的键值对字典。见上方示例)
- 返回
Dict[str, str]: 解析结果
- 参数
completion (str) –
prefixes (Dict[str, str]) –
- 返回类型
Dict[str, str]