Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ML Task, Tools APIs #797

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added `GET`, `POST`, `PUT`, `DELETE /_plugins/_ml/controllers/{model_id}` ([#779](https://github.com/opensearch-project/opensearch-api-specification/pull/779))
- Added `GET /_plugins/_ml/profile`, `GET /_plugins/_ml/profile/models`, `models/{model_id}`, `tasks`, `tasks/{task_id}` ([#787](https://github.com/opensearch-project/opensearch-api-specification/pull/787))
- Added `GET /_plugins/_ml/stats/`, `stats/{stat}`, `{nodeId}/stats/`, `{nodeId}/stats/{stat}` ([#794](https://github.com/opensearch-project/opensearch-api-specification/pull/794))
- Added `GET`, `POST /_plugins/_ml/tasks/_search`, `GET /_plugins/_ml/tools`, `tools/{tool_name}` ([#797](https://github.com/opensearch-project/opensearch-api-specification/pull/797))

### Removed
- Removed unsupported `_common.mapping:SourceField`'s `mode` field and associated `_common.mapping:SourceFieldMode` enum ([#652](https://github.com/opensearch-project/opensearch-api-specification/pull/652))
Expand Down
100 changes: 99 additions & 1 deletion spec/namespaces/ml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ paths:
get:
operationId: ml.get_task.0
x-operation-group: ml.get_task
x-version-added: '1.3'
description: Retrieves a task.
parameters:
- $ref: '#/components/parameters/ml.get_task::path.task_id'
Expand All @@ -279,12 +280,34 @@ paths:
delete:
operationId: ml.delete_task.0
x-operation-group: ml.delete_task
x-version-added: '1.3'
description: Deletes a task.
parameters:
- $ref: '#/components/parameters/ml.delete_task::path.task_id'
responses:
'200':
$ref: '#/components/responses/ml.delete_task@200'
/_plugins/_ml/tasks/_search:
get:
operationId: ml.search_tasks.0
x-operation-group: ml.search_tasks
x-version-added: '1.3'
description: Searches for tasks.
requestBody:
$ref: '#/components/requestBodies/ml.search_tasks'
responses:
'200':
$ref: '#/components/responses/ml.search_tasks@200'
post:
operationId: ml.search_tasks.1
x-operation-group: ml.search_tasks
x-version-added: '1.3'
description: Searches for tasks.
requestBody:
$ref: '#/components/requestBodies/ml.search_tasks'
responses:
'200':
$ref: '#/components/responses/ml.search_tasks@200'
/_plugins/_ml/models/_search:
get:
operationId: ml.search_models.0
Expand Down Expand Up @@ -735,6 +758,26 @@ paths:
responses:
'200':
$ref: '#/components/responses/ml.get_stats@200'
/_plugins/_ml/tools:
get:
operationId: ml.get_tools.0
x-operation-group: ml.get_tools
x-version-added: '2.12'
description: Get tools.
responses:
'200':
$ref: '#/components/responses/ml.get_tools@200'
/_plugins/_ml/tools/{tool_name}:
get:
operationId: ml.get_tools.1
x-operation-group: ml.get_tools
x-version-added: '2.12'
description: Get tools.
parameters:
- $ref: '#/components/parameters/ml.get_tools::path.tool_name'
responses:
'200':
$ref: '#/components/responses/ml.get_tools@200'
nathaliellenaa marked this conversation as resolved.
Show resolved Hide resolved
components:
requestBodies:
ml.register_model_group:
Expand Down Expand Up @@ -1038,6 +1081,23 @@ components:
description: The text documents.
required:
- text_docs
ml.search_tasks:
content:
application/json:
schema:
type: object
properties:
query:
$ref: '../schemas/ml._common.yaml#/components/schemas/Query'
size:
type: integer
format: int64
description: The number of tasks to return.
sort:
type: array
items:
$ref: '../schemas/ml._common.yaml#/components/schemas/Sort'
description: The sort order.
ml.predict:
content:
application/json:
Expand Down Expand Up @@ -1520,6 +1580,11 @@ components:
application/json:
schema:
$ref: '../schemas/ml._common.yaml#/components/schemas/Task'
ml.search_tasks@200:
content:
application/json:
schema:
$ref: '../schemas/ml._common.yaml#/components/schemas/SearchTasksResponse'
ml.search_models@200:
content:
application/json:
Expand Down Expand Up @@ -1741,6 +1806,15 @@ components:
application/json:
schema:
$ref: '../schemas/ml._common.yaml#/components/schemas/GetStatsResponse'
ml.get_tools@200:
content:
application/json:
schema:
oneOf:
- type: array
items:
$ref: '../schemas/ml._common.yaml#/components/schemas/GetToolsResponse'
- $ref: '../schemas/ml._common.yaml#/components/schemas/GetToolsResponse'
parameters:
ml.get_all_memories::query.max_results:
name: max_results
Expand Down Expand Up @@ -2047,4 +2121,28 @@ components:
in: path
required: true
schema:
type: string
type: string
ml.get_tools::path.tool_name:
name: tool_name
in: path
required: true
schema:
type: string
enum:
- AgentTool
- CatIndexTool
- ConnectorTool
- CreateAnomalyDetectorTool
- IndexMappingTool
- LogPatternTool
- MLModelTool
- NeuralSparseSearchTool
- PPLTool
- RAGTool
- SearchAlertsTool
- SearchAnomalyDetectorsTool
- SearchAnomalyResultsTool
- SearchIndexTool
- SearchMonitorsTool
- VectorDBTool
- VisualizationTool
Loading
Loading