You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AdhocExecuteRequest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
**collection_identifiers** | **List[str]** | Collection identifiers (names or IDs) to query. Can be collection names or IDs. Names are automatically resolved. Can be empty for query-only inference mode (e.g., LLM query analysis without documents). | [optional]
10
10
**input_schema** | [**Dict[str, RetrieverInputSchemaFieldInput]**](RetrieverInputSchemaFieldInput.md) | REQUIRED. Input schema defining expected inputs. Each key is an input name, value is a RetrieverInputSchemaField. |
11
11
**stages** | [**List[StageConfig]**](StageConfig.md) | REQUIRED. Ordered list of stage configurations. At least one stage is required for execution. |
12
-
**inputs** | **Dict[str, object]** | REQUIRED. Input values matching the input_schema. These values are passed to stages for parameterization. |
12
+
**inputs** | **object** | REQUIRED. Input values matching the input_schema. These values are passed to stages for parameterization. |
**stream** | **bool** | Enable streaming execution to receive real-time stage updates via Server-Sent Events (SSE). NOT REQUIRED - defaults to False for standard execution. When stream=True: - Response Content-Type: text/event-stream - Events emitted: stage_start, stage_complete, stage_error, execution_complete, execution_error - Each event is formatted as: data: {json}\\n\\n - StreamStageEvent contains: event_type, execution_id, stage_name, stage_index, total_stages, documents (intermediate), statistics, budget_used When to use streaming: - Progress tracking for multi-stage pipelines - Displaying intermediate results as stages complete - Real-time budget and performance monitoring - Debugging pipeline execution When to skip streaming: - Single-stage or fast pipelines (<100ms) - No need for intermediate results - Minimizing overhead is critical | [optional][default to False]
Copy file name to clipboardExpand all lines: docs/AlgorithmParams.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Name | Type | Description | Notes
18
18
**eps** | **float** | Maximum distance for DBSCAN cluster extraction method | [optional]
19
19
**min_samples** | **int** | Number of samples in a neighborhood for a point to be considered a core point | [optional][default to 5]
20
20
**metric** | **str** | Metric to use for distance computation | [optional][default to 'minkowski']
21
-
**metric_params** | **Dict[str, object]** | Additional keyword arguments for the metric function | [optional]
21
+
**metric_params** | **object** | Additional keyword arguments for the metric function | [optional]
22
22
**leaf_size** | **int** | Leaf size passed to BallTree or KDTree | [optional][default to 30]
23
23
**p** | **float** | Parameter for the Minkowski metric | [optional][default to 2]
24
24
**n_jobs** | **int** | Number of parallel jobs to run (-1 means using all processors) | [optional][default to 1]
@@ -45,7 +45,7 @@ Name | Type | Description | Notes
45
45
**assign_labels** | **str** | Strategy to assign labels in the embedding space ('kmeans' or 'discretize') | [optional][default to 'kmeans']
46
46
**degree** | **float** | Degree of the polynomial kernel. Ignored by other kernels | [optional][default to 3]
47
47
**coef0** | **float** | Zero coefficient for polynomial and sigmoid kernels | [optional][default to 1]
48
-
**kernel_params** | **Dict[str, object]** | Parameters for the kernel function | [optional]
48
+
**kernel_params** | **object** | Parameters for the kernel function | [optional]
49
49
**covariance_type** | **str** | Type of covariance parameters ('full', 'tied', 'diag', 'spherical') | [optional][default to 'full']
50
50
**reg_covar** | **float** | Regularization added to the diagonal of covariance | [optional][default to 1.0E-6]
51
51
**init_params** | **str** | Method used to initialize weights, means and covariances ('kmeans' or 'random') | [optional][default to 'kmeans']
0 commit comments