Jaguar
JaguarVectorStore #
Jaguar 向量存储。
参见 http://www.jaguardb.com 参见 http://github.com/fserv/jaguar-sdk
示例
pip install llama-index-vector-stores-jaguar
from llama_index.vector_stores.jaguar import JaguarVectorStore
vectorstore = JaguarVectorStore(
pod = 'vdb',
store = 'mystore',
vector_index = 'v',
vector_type = 'cosine_fraction_float',
vector_dimension = 1536,
url='http://192.168.8.88:8080/fwww/',
)
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
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 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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 |
|
add #
add(nodes: Sequence[BaseNode], **add_kwargs: Any) -> List[str]
将节点添加到索引。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
nodes
|
Sequence[BaseNode]
|
List[BaseNode]:带有嵌入的节点列表 |
必需 |
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
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 |
|
delete #
delete(ref_doc_id: str, **delete_kwargs: Any) -> None
使用 ref_doc_id 删除节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
ref_doc_id
|
str
|
要删除的文档的 doc_id。 |
必需 |
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
query #
query(query: VectorStoreQuery, **kwargs: Any) -> VectorStoreQueryResult
查询索引以获取前 k 个最相似的节点。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query
|
VectorStoreQuery
|
VectorStoreQuery 对象 |
必需 |
kwargs
|
Any
|
可能包含 'where', 'metadata_fields', 'args', 'fetch_k' |
{}
|
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
load_documents #
load_documents(embedding: List[float], k: int, **kwargs: Any) -> List[Document]
查询索引以加载前 k 个最相似的文档。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
embedding
|
List[float]
|
浮点数列表 |
必需 |
k
|
int
|
topK 数量 |
必需 |
kwargs
|
Any
|
可能包含 'where', 'metadata_fields', 'args', 'fetch_k' |
{}
|
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
create #
create(metadata_fields: str, text_size: int) -> None
在后端数据库上创建向量存储。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
metadata_fields
|
str
|
额外的元数据列和类型 |
必需 |
返回值:成功返回 True;失败返回 False
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
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 |
|
add_text #
add_text(text: str, embedding: List[float], metadata: Optional[dict] = None, **kwargs: Any) -> str
通过嵌入添加文本并添加到向量存储。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
texts
|
要添加到 jaguar 向量存储的文本字符串。 |
必需 | |
embedding
|
List[float]
|
文本的嵌入向量,浮点数列表 |
必需 |
metadata
|
Optional[dict]
|
{'file_path': '../data/paul_graham/paul_graham_essay.txt', 'file_name': 'paul_graham_essay.txt', 'file_type': 'text/plain', 'file_size': 75042, 'creation_date': '2023-12-24', 'last_modified_date': '2023-12-24', 'last_accessed_date': '2023-12-28'} |
无
|
kwargs
|
Any
|
vector_index=name_of_vector_index file_column=name_of_file_column metadata={...} |
{}
|
返回值
类型 | 描述 |
---|---|
str
|
将文本添加到向量存储后返回的 id |
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
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 |
|
similarity_search_with_score #
similarity_search_with_score(embedding: Optional[List[float]], k: int = 3, form: str = 'node', **kwargs: Any) -> Union[Tuple[List[TextNode], List[str], List[float]], List[Document]]
返回与查询嵌入最相似的节点,以及它们的 id 和分数。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
embedding
|
Optional[List[float]]
|
要查找文本的嵌入。 |
必需 |
k
|
int
|
要返回的节点数量。默认为 3。 |
3
|
form
|
str
|
如果是 "node",返回 Tuple[List[TextNode], List[str], List[float]];如果是 "doc",返回 List[Document] |
'node'
|
kwargs
|
Any
|
可能包含 where, metadata_fields, args, fetch_k |
{}
|
返回值:Tuple (节点列表, id 列表, 相似度分数列表)
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
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 |
|
is_anomalous #
is_anomalous(node: BaseNode, **kwargs: Any) -> bool
检测给定文本是否是数据集中的异常值。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query
|
要检测是否为异常的文本 |
必需 |
返回值:True 或 False
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
|
run #
run(query: str, withFile: bool = False) -> dict
在 jaguardb 中运行任何查询语句。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
query
|
str
|
发送给 jaguardb 的查询语句 |
必需 |
返回值:无效 token 返回 None,否则返回 json 结果字符串
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
|
count #
count() -> int
计算 jaguardb 中某个存储的记录数。
参数:无 参数 返回值:(int) pod 存储中的记录数
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
|
clear #
clear() -> None
删除 jaguardb 中的所有记录。
参数:无 参数 返回值:None
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
474 475 476 477 478 479 480 481 482 483 |
|
drop #
drop() -> None
在 jaguardb 中删除或移除某个存储。
参数:无 参数 返回值:None
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
485 486 487 488 489 490 491 492 493 494 |
|
login #
login(jaguar_api_key: Optional[str] = '') -> bool
使用 jaguar_api_key 登录 jaguar 服务器,或让 self._jag 查找密钥。
参数
名称 | 类型 | 描述 | 默认值 |
---|---|---|---|
可选
|
jaguar_api_key (str
|
用户访问 jaguardb 服务器的 API 密钥 |
必需 |
返回值:成功返回 True;失败返回 False
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
|
logout #
logout() -> None
登出以清理资源。
参数:无 参数 返回值:None
源码位于 llama-index-integrations/vector_stores/llama-index-vector-stores-jaguar/llama_index/vector_stores/jaguar/base.py
523 524 525 526 527 528 529 530 |
|