索引
参考文档信息
dataclass
#
基类:EventDataClassJsonMixin
表示已摄取文档的数据类。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_ids
|
List
|
内置可变序列。 如果未提供参数,构造函数将创建一个新的空列表。 如果指定了参数,则它必须是一个可迭代对象。 |
<dynamic>
|
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
16 17 18 19 20 21 | |
基础文档存储 #
基类:EventABC
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
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 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 | |
persist #
persist(persist_path: str = DEFAULT_PERSIST_PATH, fs: Optional[AbstractFileSystem] = None) -> None
将文档存储持久化到文件中。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
26 27 28 29 30 31 | |
delete_document
abstractmethod
#
delete_document(doc_id: str, raise_error: bool = True) -> None
从存储中删除一个文档。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
66 67 68 69 | |
adelete_document
abstractmethod
async
#
adelete_document(doc_id: str, raise_error: bool = True) -> None
从存储中删除一个文档。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
71 72 73 74 | |
get_all_ref_doc_info
abstractmethod
#
get_all_ref_doc_info() -> Optional[Dict[str, RefDocInfo]]
获取所有已摄取文档的 ref_doc_id -> RefDocInfo 映射关系。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
108 109 110 | |
aget_all_ref_doc_info
abstractmethod
async
#
aget_all_ref_doc_info() -> Optional[Dict[str, RefDocInfo]]
获取所有已摄取文档的 ref_doc_id -> RefDocInfo 映射关系。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
112 113 114 | |
get_ref_doc_info
abstractmethod
#
get_ref_doc_info(ref_doc_id: str) -> Optional[RefDocInfo]
获取给定 ref_doc_id 的 RefDocInfo。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
116 117 118 | |
aget_ref_doc_info
abstractmethod
async
#
aget_ref_doc_info(ref_doc_id: str) -> Optional[RefDocInfo]
获取给定 ref_doc_id 的 RefDocInfo。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
120 121 122 | |
delete_ref_doc
abstractmethod
#
delete_ref_doc(ref_doc_id: str, raise_error: bool = True) -> None
删除一个参考文档及其所有关联节点。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
124 125 126 | |
adelete_ref_doc
abstractmethod
async
#
adelete_ref_doc(ref_doc_id: str, raise_error: bool = True) -> None
删除一个参考文档及其所有关联节点。
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
128 129 130 | |
get_nodes #
get_nodes(node_ids: List[str], raise_error: bool = True) -> List[BaseNode]
从文档存储中获取节点。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_ids
|
List[str]
|
节点标识符 |
required |
raise_error
|
bool
|
如果未找到节点ID则抛出错误 |
True
|
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | |
aget_nodes
async
#
aget_nodes(node_ids: List[str], raise_error: bool = True) -> List[BaseNode]
从文档存储中获取节点。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_ids
|
List[str]
|
节点标识符 |
required |
raise_error
|
bool
|
如果未找到节点ID则抛出错误 |
True
|
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
get_node #
get_node(node_id: str, raise_error: Literal[True] = True) -> BaseNode
get_node(node_id: str, raise_error: Literal[False] = False) -> Optional[BaseNode]
get_node(node_id: str, raise_error: bool = True) -> Optional[BaseNode]
从文档存储中获取节点。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_id
|
str
|
节点ID |
required |
raise_error
|
bool
|
如果未找到节点ID则抛出错误 |
True
|
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
aget_node
async
#
aget_node(node_id: str, raise_error: Literal[True] = True) -> BaseNode
aget_node(node_id: str, raise_error: Literal[False] = False) -> Optional[BaseNode]
aget_node(node_id: str, raise_error: bool = True) -> Optional[BaseNode]
从文档存储中获取节点。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_id
|
str
|
节点ID |
required |
raise_error
|
bool
|
如果未找到节点ID则抛出错误 |
True
|
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
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 | |
get_node_dict #
get_node_dict(node_id_dict: Dict[int, str]) -> Dict[int, BaseNode]
根据索引到节点ID的映射,从文档存储中获取节点字典。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_id_dict
|
Dict[int, str]
|
索引到节点ID的映射 |
required |
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
249 250 251 252 253 254 255 256 257 258 259 | |
aget_node_dict
async
#
aget_node_dict(node_id_dict: Dict[int, str]) -> Dict[int, BaseNode]
根据索引到节点ID的映射,从文档存储中获取节点字典。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
node_id_dict
|
Dict[int, str]
|
索引到节点ID的映射 |
required |
workflows/handler.py 中的源代码llama_index/core/storage/docstore/types.py
261 262 263 264 265 266 267 268 269 270 271 272 | |