test() async {
final vlm = CactusVLM();
await vlm.init(
modelFilename: 'Qwen2.5-Omni-3B-Q4_K_M.gguf',
mmprojFilename: 'mmproj-Qwen2.5-Omni-3B-Q8_0.gguf',
);
var response=await vlm.completion([
ChatMessage(role: 'user', content: 'hello'),
]);
print(response.text);
}
I ran it on the iOS simulator and got the following log:
flutter: Isolate error: CactusException: Failed to initialize multimodal with status: -2。 why ?