Hubspot
HubspotReader #
继承自: BaseReader
Hubspot 读取器。从 Hubspot 账户读取数据。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
access_token(str)
|
Hubspot API 密钥。 |
必需 |
源代码在 llama-index-integrations/readers/llama-index-readers-hubspot/llama_index/readers/hubspot/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
load_data #
load_data() -> List[Document]
从 Hubspot 加载 Deals, Contacts 和 Companies 数据。
返回
类型 | 描述 |
---|---|
List[Document]
|
List[Document]: 文档列表,每个文档代表一个 Hubspot 对象列表 |
源代码在 llama-index-integrations/readers/llama-index-readers-hubspot/llama_index/readers/hubspot/base.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|