We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 601cc27 + 5fd650c commit 41dcf34Copy full SHA for 41dcf34
src/functions/recommend-model.ts
@@ -32,12 +32,11 @@ export class recommendModel extends Tool {
32
systemMessage.push(
33
[
34
`\t- Model Name: ${model.name}`,
35
- `\t\tModel Version: ${model.model_version}`,
+ `\t\tModel Version: ${model.version}`,
36
`\t\tPublisher: ${model.publisher}`,
37
- `\t\tModel Family: ${model.model_family}`,
38
- `\t\tModel Registry: ${model.model_registry}`,
+ `\t\tModel Registry: ${model.registryName}`,
39
`\t\tLicense: ${model.license}`,
40
- `\t\tTask: ${model.task}`,
+ `\t\tTask: ${model.inferenceTasks.join(", ")}`,
41
`\t\tSummary: ${model.summary}`,
42
].join("\n")
43
);
0 commit comments