Plan discover
PlanDiscoverOperator
Bases: Operator
Plan discover operator that searches for top-level operators as plan starters, given a task and data
Attributes:
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
task |
str | "" | Task to discover plans/operators | |
data |
str | "" | Data to operate the task on | |
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 for 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/plan_discover.py
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 | |
plan_discover_operator_explainer(output, input_data, attributes)
Explain plan discover operator output.
Source code in blue/operators/plan_discover.py
79 80 81 82 83 84 85 86 87 | |
plan_discover_operator_validator(input_data, attributes, properties=None)
Validate operator discover operator attributes.
Source code in blue/operators/plan_discover.py
74 75 76 | |
Last update: 2025-10-09