Operator discover
OperatorDiscoverOperator
Bases: Operator
Operator discover operator that searches for operators
Attributes:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
search_query |
str | "" | Text to search for in operator names and descriptions | |
approximate |
bool | True | Whether to use approximate (vector) search | |
hybrid |
bool | False | Whether to use hybrid search (text + vector) | |
limit |
int | -1 | Max number of results to return (-1 = unlimited) | |
page |
int | 0 | Page number for pagination | |
page_size |
int | 10 | Number of results per page (default: 10, max: 100) | |
include_metadata |
bool | False | Whether to include metadata in results (description and properties always included) | |
threshold |
float | 0.5 | Similarity threshold for filtering results (0.0-1.0, lower = more similar; applies to approximate/hybrid search) | |
progressive_pagination |
bool | False | Whether to use progressive pagination for approximate/hybrid search (searches all pages until threshold exceeded) |
Source code in blue/operators/operator_discover.py
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 | |
operator_discover_operator_explainer(output, input_data, attributes)
Explain operator discover operator output.
Source code in blue/operators/operator_discover.py
153 154 155 156 157 158 159 160 161 | |
operator_discover_operator_validator(input_data, attributes, properties=None)
Validate operator discover operator attributes.
Source code in blue/operators/operator_discover.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | |
Last update: 2025-10-09