dereference_refs#

langchain_core.utils.json_schema.dereference_refs(schema_obj: dict, *, full_schema: dict | None = None, skip_keys: Sequence[str] | None = None) dict[source]#

尝试在JSON Schema中替换$refs。

Parameters:
  • schema_obj (dict) – 要解引用的模式对象。

  • full_schema (dict | None) – 完整的模式对象。默认为 None。

  • skip_keys (Sequence[str] | None) – 要跳过的键。默认为 None。

Returns:

解引用的模式对象。

Return type:

字典