You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
common : refactor downloading system, handle mmproj with -hf option (#12694)
* (wip) refactor downloading system [no ci]
* fix all examples
* fix mmproj with -hf
* gemma3: update readme
* only handle mmproj in llava example
* fix multi-shard download
* windows: fix problem with std::min and std::max
* fix 2
SRV_ERR("failed to load draft model, '%s'\n", params_base.speculative.model.c_str());
1920
+
SRV_ERR("failed to load draft model, '%s'\n", params_base.speculative.model.path.c_str());
1924
1921
returnfalse;
1925
1922
}
1926
1923
1927
1924
if (!common_speculative_are_compatible(ctx, llama_init_dft.context.get())) {
1928
-
SRV_ERR("the draft model '%s' is not compatible with the target model '%s'\n", params_base.speculative.model.c_str(), params_base.model.c_str());
1925
+
SRV_ERR("the draft model '%s' is not compatible with the target model '%s'\n", params_base.speculative.model.path.c_str(), params_base.model.path.c_str());
0 commit comments