Couchbase
CouchbaseReader #
基类: BaseReader
Couchbase 文档加载器。
将 Couchbase 集群中的数据加载到 LlamaIndex 使用的 Document 中。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
client (可选[任意])
|
要使用的 Couchbase 客户端。如果未提供,将根据 connection_string 和数据库凭据创建客户端。 |
必需 | |
connection_string
|
可选[字符串]
|
Couchbase 集群的连接字符串。 |
无
|
db_username
|
可选[字符串]
|
连接 Couchbase 集群的用户名。 |
无
|
db_password
|
可选[字符串]
|
连接 Couchbase 集群的密码。 |
无
|
源代码位于 llama-index-integrations/readers/llama-index-readers-couchbase/llama_index/readers/couchbase/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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
lazy_load_data #
lazy_load_data(query: str, text_fields: Optional[List[str]] = None, metadata_fields: Optional[List[str]] = []) -> Iterable[Document]
延迟加载 Couchbase 集群中的数据。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query
|
字符串
|
要执行的 SQL++ 查询。 |
必需 |
text_fields
|
可选[列表[字符串]]
|
要写入文档 |
无
|
metadata_fields
|
可选[列表[字符串]]
|
要写入文档 |
[]
|
源代码位于 llama-index-integrations/readers/llama-index-readers-couchbase/llama_index/readers/couchbase/base.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
|
load_data #
load_data(query: str, text_fields: Optional[List[str]] = None, metadata_fields: Optional[List[str]] = None) -> List[Document]
从 Couchbase 集群加载数据。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query
|
字符串
|
要执行的 SQL++ 查询。 |
必需 |
text_fields
|
可选[列表[字符串]]
|
要写入文档 |
无
|
metadata_fields
|
可选[列表[字符串]]
|
要写入文档 |
无
|
源代码位于 llama-index-integrations/readers/llama-index-readers-couchbase/llama_index/readers/couchbase/base.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|