Neptune
基类: NeptuneBaseGraphStore
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics.py
query #
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 |
|
查询 Neptune Analytics 图。
query(query: str, params: dict = {}) -> Dict[str, Any]
NeptuneAnalyticsPropertyGraphStore #
query #
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|
基类: NeptuneBasePropertyGraph
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
structured_query #
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 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 |
|
运行结构化查询。
structured_query(query: str, param_map: Dict[str, Any] = None) -> Any
参数
名称
类型 | 描述 | 默认值 | str |
---|---|---|---|
NeptuneAnalyticsPropertyGraphStore
|
要运行的查询
|
必需 |
param_map |
Dict[str, Any] | None
|
查询参数字典。默认为 None。
|
抛出异常 |
无
|
NeptuneQueryException
描述 | 默认值 |
---|---|
来自 Neptune 的异常,包含详细信息
|
返回值 |
Any
类型 | 描述 | 默认值 |
---|---|---|
查询结果 |
查询结果
|
vector_query # |
structured_query #
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 |
|
使用向量存储查询图存储。
vector_query(query: VectorStoreQuery, **kwargs: Any) -> Tuple[List[Any]]
(节点, 分数)
Any
描述 | 默认值 |
---|---|
节点及其相关分数
|
upsert_nodes # |
structured_query #
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 |
|
在图中 upsert 节点。
upsert_nodes(nodes: List[LabelledNode]) -> None
nodes
名称
类型 | 描述 | 默认值 | str |
---|---|---|---|
List[LabelledNode]
|
要 upsert 的节点列表
|
NeptuneDatabaseGraphStore # |
param_map |
structured_query #
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 |
|
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database.py
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics.py
query #
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 |
|
查询 Neptune 数据库。
query(query: str, params: dict = {}) -> Dict[str, Any]
NeptuneDatabasePropertyGraphStore #
query #
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/database_property_graph.py
源码位于 llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/llama_index/graph_stores/neptune/analytics_property_graph.py
structured_query #
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 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 |
|
vector_query #
structured_query(query: str, param_map: Dict[str, Any] = None) -> Any
参数
名称
类型 | 描述 | 默认值 | str |
---|---|---|---|
NeptuneAnalyticsPropertyGraphStore
|
要运行的查询
|
必需 |
param_map |
Dict[str, Any] | None
|
查询参数字典。默认为 None。
|
抛出异常 |
无
|
NeptuneQueryException
描述 | 默认值 |
---|---|
来自 Neptune 的异常,包含详细信息
|
返回值 |
Any
类型 | 描述 | 默认值 |
---|---|---|
查询结果 |
查询结果
|
vector_query # |
structured_query #
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 |
|
不支持。
vector_query(query: VectorStoreQuery, **kwargs: Any) -> Tuple[List[Any]]
VectorStoreQuery
名称
类型 | 描述 | 默认值 | str |
---|---|---|---|
NeptuneAnalyticsPropertyGraphStore
|
描述
|
NotImplementedError |
param_map |
NeptuneQueryException
描述 | 默认值 |
---|---|
Tuple[List[Any]]
|
NotImplementedError |
Any
描述 | 默认值 |
---|---|
Tuple[List[LabelledNode] | List[float]]: 描述
|
upsert_nodes # |
structured_query #
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
返回顶部
upsert_nodes(nodes: List[LabelledNode]) -> None
nodes
名称
类型 | 描述 | 默认值 | str |
---|---|---|---|
List[LabelledNode]
|
要 upsert 的节点列表
|
NeptuneDatabaseGraphStore # |
param_map |
structured_query #
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 |
|