langchain_experimental.graph_transformers.llm.UnstructuredRelation

class langchain_experimental.graph_transformers.llm.UnstructuredRelation[source]

Bases: BaseModel

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

如果输入数据无法解析成有效的模型,将引发 ValidationError。

参数 head: str [必填]

从实体中提取的头部实体,例如 Microsoft, Apple, John 等。必须使用人类可读的唯一标识符。

参数 head_type: str [必填]

提取头部实体的类型,例如人员、公司等。

参数 relation: str [必填]

头部实体与尾部实体之间的关系。

参数 tail: str [必填]

从实体中提取的尾部实体,例如 Microsoft, Apple, John 等。必须使用人类可读的唯一标识符。

参数 tail_type: str [必填]

提取尾部实体的类型,例如人员、公司等。