We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d8ff7 commit 1dabac2Copy full SHA for 1dabac2
apps/web-roo-code/src/lib/hooks/use-open-router-models.ts
@@ -49,7 +49,7 @@ export const getOpenRouterModels = async (): Promise<OpenRouterModelRecord> => {
49
50
return result.data.data
51
.filter((rawModel) => {
52
- // Skip image generation models (models that output images).
+ // Skip image generation models (models that output images)
53
return !rawModel.architecture?.output_modalities?.includes("image")
54
})
55
.sort((a, b) => a.name.localeCompare(b.name))
0 commit comments