Skip to content
Open
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
14 changes: 14 additions & 0 deletions packages/components/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -1708,6 +1708,20 @@
"description": "Command R+ – complex RAG, multi-step tool use",
"input_cost": 0.0025,
"output_cost": 0.01
},
{
"label": "c4ai-aya-expanse-32b",
"name": "c4ai-aya-expanse-32b",
"description": "Aya Expanse 32B – multilingual across 23 languages, 128k context",
"input_cost": 0.0005,
"output_cost": 0.0015
},
{
"label": "c4ai-aya-vision-32b",
"name": "c4ai-aya-vision-32b",
"description": "Aya Vision 32B – multimodal (text + image), multilingual across 23 languages",
"input_cost": 0.0005,
"output_cost": 0.0015
}
Comment on lines +1719 to 1725
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While adding the c4ai-aya-vision-32b model to the list is correct for the provider, the current implementation of the ChatCohere node (as seen in ChatCohere.ts) does not yet support multimodal inputs. Specifically, it lacks the allowImageUpload: true flag and the necessary logic in the init method to process image attachments. Including this model with a "multimodal" description in the UI might be misleading to users as they won't see the image upload option. It is recommended to update the ChatCohere node to support vision capabilities in a follow-up change or alongside this PR.

]
},
Expand Down