Docarray
DocArrayHnswVectorStore #
Bases: DocArrayVectorStore
代表一个DocArray HNSW向量存储的类。
这个类是由Docarray提供的轻量级文档索引实现。它将向量存储在hnswlib中的磁盘上,并将所有其他数据存储在SQLite中。
示例:
pip install llama-index-vector-stores-docarray
from llama_index.vector_stores.docarray import DocArrayHnswVectorStore
# 初始化DocArrayHnswVectorStore
vector_store = DocArrayHnswVectorStore(work_dir="hnsw_index", dim=1536)
Source code in llama_index/vector_stores/docarray/hnsw.py
8 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 115 116 117 118 119 120 |
|
DocArrayInMemoryVectorStore #
Bases: DocArrayVectorStore
代表DocArray内存向量存储的类。
这个类是由Docarray提供的文档索引,它将文档存储在内存中。
示例:
pip install llama-index-vector-stores-docarray
from llama_index.vector_stores.docarray import DocArrayInMemoryVectorStore
# 创建一个DocArrayInMemoryVectorStore的实例
vector_store = DocArrayInMemoryVectorStore()
Source code in llama_index/vector_stores/docarray/in_memory.py
7 8 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 |
|
persist #
persist(
persist_path: str,
fs: Optional[AbstractFileSystem] = None,
) -> None
将内存中的向量存储持久化到文件中。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
persist_path |
str
|
持久化索引的路径。 |
required |
fs |
(AbstractFileSystem, 可选)
|
要持久化到的文件系统。 (不适用) |
None
|
Source code in llama_index/vector_stores/docarray/in_memory.py
78 79 80 81 82 83 84 85 86 87 88 89 |
|