1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-09-09 09:19:54 +00:00

vision tag

This commit is contained in:
Laura
2025-08-10 16:44:00 +02:00
parent dcf7f09108
commit e2ffb9df6d
4 changed files with 18 additions and 1 deletions

View File

@@ -62,6 +62,12 @@ func GetModelTags(model openrouter.Model) []string {
}
}
for _, modality := range model.Architecture.InputModalities {
if modality == "image" {
tags = append(tags, "vision")
}
}
sort.Strings(tags)
return tags