JsonSpec#

class langchain_community.tools.json.tool.JsonSpec[source]#

基础类:BaseModel

JSON 规范的基类。

通过解析和验证来自关键字参数的输入数据来创建一个新模型。

如果输入数据无法验证以形成有效模型,则引发 [ValidationError][pydantic_core.ValidationError]。

self 被显式地设为仅位置参数,以允许 self 作为字段名称。

param dict_: Dict [Required]#
param max_value_length: int = 200#
classmethod from_file(path: Path) JsonSpec[来源]#

从文件创建一个 JsonSpec。

Parameters:

路径 (路径)

Return type:

JsonSpec

keys(text: str) str[source]#

返回给定路径下字典的键。

Parameters:

text (str) – 字典路径的Python表示(例如 data[“key1”][0][“key2”])。

Return type:

字符串

value(text: str) str[source]#

返回给定路径下的字典值。

Parameters:

text (str) – 字典路径的Python表示(例如 data[“key1”][0][“key2”])。

Return type:

字符串

使用 JsonSpec 的示例