扁平化字典#
- langchain_community.callbacks.utils.flatten_dict(nested_dict: Dict[str, Any], parent_key: str = '', sep: str = '_') Dict[str, Any] [来源]#
将嵌套字典展平为扁平字典。
- Parameters:
nested_dict (dict) – 要展平的嵌套字典。
parent_key (str) – 要添加到扁平化字典键的前缀。
sep (str) – 用于在父键和扁平化字典的键之间使用的分隔符。
- Returns:
一个扁平字典。
- Return type:
(字典)