Zilliz
ZillizCloudPipelineIndex #
Bases: BaseManagedIndex
Zilliz Cloud Pipeline's Index.
The Zilliz Cloud Pipeline's index implements a managed index that uses Zilliz Cloud Pipelines as the backend.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pipeline_ids
|
dict
|
A dictionary of pipeline ids for INGESTION, SEARCH, DELETION. |
required |
api_key
|
str
|
Zilliz Cloud's API key. |
None
|
cloud_region
|
str='gcp-us-west1'
|
The region of Zilliz Cloud's cluster. Defaults to 'gcp-us-west1'. |
'gcp-us-west1'
|
show_progress
|
bool
|
Whether to show tqdm progress bars. Defaults to False. |
False
|
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
|
delete_by_expression #
delete_by_expression(expression: str)
Delete data by Milvus boolean expression if using the corresponding deletion pipeline.
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
131 132 133 134 135 136 137 138 139 140 141 142 143 |
|
delete_by_doc_name #
delete_by_doc_name(doc_name: str)
Delete data by doc name if using the corresponding deletion pipeline.
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
as_retriever #
as_retriever(**kwargs: Any) -> BaseRetriever
Return a retriever.
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
171 172 173 174 175 176 177 |
|
create_pipelines
staticmethod
#
create_pipelines(project_id: str, cluster_id: str, cloud_region: str = 'gcp-us-west1', api_key: str = None, collection_name: str = 'zcp_llamalection', data_type: str = 'text', metadata_schema: Optional[Dict] = None, **kwargs: Any) -> dict
Create INGESTION, SEARCH, DELETION pipelines using self.collection_name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project_id
|
str
|
Zilliz Cloud's project ID. |
required |
cluster_id
|
str
|
Zilliz Cloud's cluster ID. |
required |
api_key
|
str=None
|
Zilliz Cloud's API key. Defaults to None. |
None
|
cloud_region
|
str='gcp-us-west1'
|
The region of Zilliz Cloud's cluster. Defaults to 'gcp-us-west1'. |
'gcp-us-west1'
|
collection_name
|
str="zcp_llamalection"
|
A collection name, defaults to 'zcp_llamalection'. |
'zcp_llamalection'
|
data_type
|
str="text"
|
The data type of pipelines, defaults to "text". Currently only "text" or "doc" are supported. |
'text'
|
metadata_schema
|
Dict=None
|
A dictionary of metadata schema, defaults to None. Use metadata name as key and the corresponding data type as value: {'field_name': 'field_type'}. Only support the following values as the field type: 'Bool', 'Int8', 'Int16', 'Int32', 'Int64', 'Float', 'Double', 'VarChar'. |
None
|
kwargs
|
Any
|
optional function parameters to create ingestion & search pipelines. - language: The language of documents. Available options: "ENGLISH", "CHINESE". - embedding: The embedding service used in both ingestion & search pipeline. - reranker: The reranker service used in search function. - chunkSize: The chunk size to split a document. Only for doc data. - splitBy: The separators to chunking a document. Only for doc data. |
{}
|
Returns:
Type | Description |
---|---|
dict
|
The pipeline ids of created pipelines. |
Example
from llama_index.indices import ZillizCloudPipelineIndex index = ZillizCloudPipelineIndex( project_id='YOUR_ZILLIZ_CLOUD_PROJECT_ID', cluster_id='YOUR_ZILLIZ_CLOUD_CLUSTER_ID', token='YOUR_ZILLIZ_CLOUD_API_KEY', collection_name='your_new_collection_name' ) pipeline_ids = index.create_pipelines( metadata_schema={'year': 'Int32', 'author': 'VarChar'} # optional, defaults to None )
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
|
from_document_url
classmethod
#
from_document_url(url: str, pipeline_ids: Optional[Dict] = None, api_key: Optional[str] = None, metadata: Optional[Dict] = None, show_progress: bool = False, **kwargs: Any) -> BaseManagedIndex
Zilliz Cloud Pipeline loads document from a signed url and then builds auto index for it.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
a gcs or s3 signed url. |
required |
pipeline_ids
|
dict=None
|
A dictionary of pipeline ids for INGESTION, SEARCH, DELETION. Defaults to None. |
None
|
api_key
|
str
|
Zilliz Cloud's API Key. |
None
|
metadata
|
Dict=None
|
A dictionary of metadata. Defaults to None. The key must be string and the value must be a string, float, integer, or boolean. |
None
|
show_progress
|
bool
|
Whether to show tqdm progress bars. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
BaseManagedIndex
|
An initialized ZillizCloudPipelineIndex |
Example
from llama_index.indices import ZillizCloudPipelineIndex api_key = "{YOUR_ZILLIZ_CLOUD_API_KEY}" pipeline_ids = ZillizCloudPipelineIndex.create_pipelines( project_id="{YOUR_ZILLIZ_PROJECT_ID}", cluster_id="{YOUR_ZILLIZ_CLUSTER_ID}", api_key=api_key, data_type="doc" ) ZillizCloudPipelineIndex.from_document_url( url='https://oss_bucket.test_doc.ext', pipeline_ids=pipeline_ids, api_key=api_key )
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 |
|
from_documents
classmethod
#
from_documents(documents: Sequence[Document], pipeline_ids: Optional[Dict] = None, api_key: Optional[str] = None, show_progress: bool = False, metadata: Optional[Dict] = None, **kwargs: Any) -> IndexType
Build a Zilliz Cloud Pipeline index from a sequence of documents.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
documents
|
Sequence[Document]
|
a sequence of llamaindex documents. |
required |
pipeline_ids
|
dict=None
|
A dictionary of pipeline ids for INGESTION, SEARCH, DELETION. Defaults to None. |
None
|
api_key
|
str
|
Zilliz Cloud's API Key. |
None
|
metadata
|
Dict=None
|
A dictionary of metadata. Defaults to None. The key must be string and the value must be a string, float, integer, or boolean. |
None
|
show_progress
|
bool
|
Whether to show tqdm progress bars. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
IndexType
|
An initialized ZillizCloudPipelineIndex |
Example
from llama_index.indices import ZillizCloudPipelineIndex api_key = "{YOUR_ZILLIZ_CLOUD_API_KEY}" pipeline_ids = ZillizCloudPipelineIndex.create_pipelines( project_id="{YOUR_ZILLIZ_PROJECT_ID}", cluster_id="{YOUR_ZILLIZ_CLUSTER_ID}", api_key=api_key, data_type="text" ) ZillizCloudPipelineIndex.from_documents( documents=my_documents, pipeline_ids=pipeline_ids, api_key=api_key )
Source code in llama-index-integrations/indices/llama-index-indices-managed-zilliz/llama_index/indices/managed/zilliz/base.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|