参数提升#
- langchain_prompty.core.param_hoisting(top: Dict[str, Any], bottom: Dict[str, Any], top_key: Any = None) Dict[str, Any] [source]#
合并两个字典,参数从下到上提升。
- Parameters:
top (Dict[str, Any]) – 顶部字典。
bottom (Dict[str, Any]) – 底部的字典。
top_key (Any) – 从底部提升到顶部的键。
- Returns:
合并后的字典。
- Return type:
Dict[str, Any]