Skip to content

Airbyte hubspot

AirbyteHubspotReader #

Bases: AirbyteCDKReader

AirbyteHubspotReader读取器。

从Hubspot检索文档

Parameters:

Name Type Description Default
config Mapping[str, Any]

Hubspot数据源的配置对象。

required
Source code in llama_index/readers/airbyte_hubspot/base.py
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class AirbyteHubspotReader(AirbyteCDKReader):
    """AirbyteHubspotReader读取器。

    从Hubspot检索文档

    Args:
        config: Hubspot数据源的配置对象。"""

    def __init__(
        self,
        config: Mapping[str, Any],
        record_handler: Optional[RecordHandler] = None,
    ) -> None:
        """使用参数进行初始化。"""
        import source_hubspot

        super().__init__(
            source_class=source_hubspot.SourceHubspot,
            config=config,
            record_handler=record_handler,
        )