We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e11226 commit 75973e6Copy full SHA for 75973e6
1 file changed
sdk_v2/js/examples/chat-completion.ts
@@ -25,7 +25,8 @@ async function main() {
25
26
console.log(`Found ${models.length} models:`);
27
for (const model of models) {
28
- console.log(` - ${model.alias}`);
+ const variants = model.variants.map((v: any) => v.id).join(', ');
29
+ console.log(` - ${model.alias} (variants: ${variants})`);
30
}
31
32
// Explore cached models
0 commit comments