File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,14 @@ The following terms are used in this section:
167167
168168 Whether the model can use external tools or APIs to perform tasks.
169169
170+ - ** embedding** _ boolean_ , OPTIONAL
171+
172+ Whether the model can perform embedding tasks.
173+
174+ - ** reward** _ boolean_ , OPTIONAL
175+
176+ Whether the model is a reward model.
177+
170178## Example
171179
172180Here is an example model artifact configuration JSON document:
@@ -208,6 +216,8 @@ Here is an example model artifact configuration JSON document:
208216 "knowledgeCutoff": "2024-05-21T00:00:00Z",
209217 "reasoning": true,
210218 "toolUsage": false
219+ "embedding": false,
220+ "reward": false
211221 }
212222 },
213223 "modelfs": {
Original file line number Diff line number Diff line change @@ -123,6 +123,12 @@ type ModelCapabilities struct {
123123 // ToolUsage indicates whether the model can use external tools
124124 // such as a calculator, a search engine, etc.
125125 ToolUsage * bool `json:"toolUsage,omitempty"`
126+
127+ // Embedding indicates whether the model can perform embedding tasks
128+ Embedding * bool `json:"embedding,omitempty"`
129+
130+ // Reward indicates whether the model is a reward model
131+ Reward * bool `json:"reward,omitempty"`
126132}
127133
128134// Model defines the basic information of a model.
You can’t perform that action at this time.
0 commit comments