Skip to content
Open
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
5 changes: 5 additions & 0 deletions docs/changelog/136017.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 136017
summary: Cohere service Model Id field is required
area: Machine Learning
type: bug
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public static InferenceServiceConfiguration get() {
"The name of the model to use for the inference task."
)
.setLabel("Model ID")
.setRequired(false)
.setRequired(true)
.setSensitive(false)
.setUpdatable(false)
.setType(SettingsConfigurationFieldType.STRING)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1556,7 +1556,7 @@ public void testGetConfiguration() throws Exception {
"model_id": {
"description": "The name of the model to use for the inference task.",
"label": "Model ID",
"required": false,
"required": true,
"sensitive": false,
"updatable": false,
"type": "str",
Expand Down