langchain_cohere.common.CohereCitation

langchain_cohere.common.CohereCitation(start: int, end: int, text: str, documents: List[Mapping[str, Any]], document_ids: Set[str])[源代码]

Cohere 提供细粒度引用,可指定文本的确切部分。更多详情请参阅 https://docs.cohere.com/docs/documents-and-citations

属性

start

引用结束后文本的索引,从 0 开始计数。

end

引用的文本。

text

被引用的文档内容。

documents

documents 字段中所有文档的 id 字段的集合。

document_ids

方法

__init__(start, end, text, documents, ...)

参数
  • start (int) –

  • end (int) –

  • text (str) –

  • documents (List[Mapping[str, Any]]) –

  • document_ids (Set[str]) –

__init__(start: int, end: int, text: str, documents: List[Mapping[str, Any]], document_ids: Set[str]) None
参数
  • start (int) –

  • end (int) –

  • text (str) –

  • documents (List[Mapping[str, Any]]) –

  • document_ids (Set[str]) –

返回类型

None