langchain_community.document_loaders.tencent_cos_file.TencentCOSFileLoader

class langchain_community.document_loaders.tencent_cos_file.TencentCOSFileLoader(conf: Any, bucket: str, key: str)[source]

从`腾讯云 COS`加载文件。

使用COS配置、存储桶和键名进行初始化。 :param conf(CosConfig): COS配置。 :param bucket(str): COS存储桶。 :param key(str): COS文件键名。

Methods

__init__(conf, bucket, key)

使用COS配置、存储桶和键名进行初始化。 :param conf(CosConfig): COS配置。 :param bucket(str): COS存储桶。 :param key(str): COS文件键名。

alazy_load()

一个用于文档的惰性加载器。

aload()

将数据加载到文档对象中。

lazy_load()

加载文档。

load()

将数据加载到文档对象中。

load_and_split([text_splitter])

加载文档并分割成块。块作为文档返回。

Parameters
  • conf (Any) –

  • bucket (str) –

  • key (str) –

__init__(conf: Any, bucket: str, key: str)[source]

使用COS配置、存储桶和键名进行初始化。 :param conf(CosConfig): COS配置。 :param bucket(str): COS存储桶。 :param key(str): COS文件键名。

Parameters
  • conf (Any) –

  • bucket (str) –

  • key (str) –

async alazy_load() AsyncIterator[Document]

一个用于文档的惰性加载器。

Return type

AsyncIterator[Document]

async aload() List[Document]

将数据加载到文档对象中。

Return type

List[Document]

lazy_load() Iterator[Document][source]

加载文档。

Return type

Iterator[Document]

load() List[Document]

将数据加载到文档对象中。

Return type

List[Document]

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]

加载文档并分割成块。块作为文档返回。

不要覆盖此方法。应该被视为已弃用!

参数:
text_splitter: 用于分割文档的TextSplitter实例。

默认为RecursiveCharacterTextSplitter。

返回:

文档列表。

Parameters

text_splitter (Optional[TextSplitter]) –

Return type

List[Document]

Examples using TencentCOSFileLoader