Skip to content
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
25 changes: 25 additions & 0 deletions specification/resources/gen-ai/definitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8013,9 +8013,34 @@ apiUpdateCustomModelMetadataInputPublic:
description:
example: example string
type: string
input_modalities:
description: Input modalities supported (e.g., text, image)
example:
- example string
items:
example: example string
type: string
type: array
license:
description: License under which the model is distributed
example: example string
type: string
name:
example: example name
type: string
output_modalities:
description: Output modalities supported (e.g., text, image)
example:
- example string
items:
example: example string
type: string
type: array
parameters:
description: Number of parameters in the model
example: "12345"
format: uint64
type: string
tags:
$ref: '#/CustomModelTags'
uuid:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ source: |-
"description": "finetuned model with olympiad math data",
"tags": {
"tags": ["finetuned", "new"]
}
},
"input_modalities": ["text"],
"output_modalities": ["text"],
"parameters": "7000000000",
"license": "apache-2.0"
}'
Loading