Skip to content

Commit

Permalink
Fixed lint and directory path error.
Browse files Browse the repository at this point in the history
Signed-off-by: Nathalie Jonathan <[email protected]>
  • Loading branch information
nathaliellenaa committed Dec 17, 2024
1 parent 5d7569f commit 49b2e50
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions spec/namespaces/ml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ paths:
description: Undeploys a model.
parameters:
- $ref: '#/components/parameters/ml.undeploy_model::path.model_id'
requestBody:
$ref: '#/components/requestBodies/ml.undeploy_model'
responses:
'200':
$ref: '#/components/responses/ml.undeploy_model@200'
Expand All @@ -110,8 +112,11 @@ paths:
deprecated: true
x-version-deprecated: 2.7.0
x-deprecation-message: Use `undeploy_model` instead.
description: Unloads a model.
parameters:
- $ref: '#/components/parameters/ml.unload_model::path.model_id'
requestBody:
$ref: '#/components/requestBodies/ml.unload_model'
responses:
'200':
$ref: '#/components/responses/ml.unload_model@200'
Expand All @@ -122,6 +127,7 @@ paths:
deprecated: true
x-version-deprecated: 2.7.0
x-deprecation-message: Use `undeploy_model` instead.
description: Unloads a model.
requestBody:
$ref: '#/components/requestBodies/ml.unload_model'
responses:
Expand Down Expand Up @@ -313,11 +319,11 @@ components:
node_ids:
type: array
items:
$ref: '_common.yaml#/components/schemas/Id'
$ref: '../schemas/_common.yaml#/components/schemas/Id'
model_ids:
type: array
items:
$ref: '_common.yaml#/components/schemas/Id'
$ref: '../schemas/_common.yaml#/components/schemas/Id'
required:
- model_ids
ml.unload_model:
Expand All @@ -329,11 +335,11 @@ components:
node_ids:
type: array
items:
$ref: '_common.yaml#/components/schemas/Id'
$ref: '../schemas/_common.yaml#/components/schemas/Id'
model_ids:
type: array
items:
$ref: '_common.yaml#/components/schemas/Id'
$ref: '../schemas/_common.yaml#/components/schemas/Id'
required:
- model_ids
ml.create_connector:
Expand Down

0 comments on commit 49b2e50

Please sign in to comment.