Skip to content

Commit c0bd810

Browse files
committed
fix ultravox bug
1 parent 6687d38 commit c0bd810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mtmd/clip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4034,7 +4034,7 @@ bool clip_has_audio_encoder(const struct clip_ctx * ctx) {
40344034
}
40354035

40364036
bool clip_has_whisper_encoder(const struct clip_ctx * ctx) {
4037-
return ctx->proj_type == PROJECTOR_TYPE_GEMMA3 || ctx->proj_type == PROJECTOR_TYPE_QWEN2A;
4037+
return ctx->proj_type == PROJECTOR_TYPE_ULTRAVOX || ctx->proj_type == PROJECTOR_TYPE_QWEN2A;
40384038
}
40394039

40404040
bool clip_encode_float_image (struct clip_ctx * ctx, int n_threads, float * img, int h, int w, float * vec) {

0 commit comments

Comments
 (0)