File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
mlx-swift-examples.xcodeproj/xcshareddata/xcschemes Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -302,15 +302,9 @@ struct EvaluateCommand: AsyncParsableCommand {
302
302
let modelFactory : ModelFactory
303
303
let defaultModel : ModelConfiguration
304
304
305
- // Switch between LLM and VLM based on presence of media
306
- let vlm = !media. image. isEmpty || !media. video. isEmpty
307
- if vlm {
308
- modelFactory = VLMModelFactory . shared
309
- defaultModel = MLXVLM . VLMRegistry. qwen2VL2BInstruct4Bit
310
- } else {
311
- modelFactory = LLMModelFactory . shared
312
- defaultModel = MLXLLM . LLMRegistry. mistral7B4bit
313
- }
305
+ // Always use VLM factory and gemma3n_E2B_instruct for testing
306
+ modelFactory = VLMModelFactory . shared
307
+ defaultModel = MLXVLM . VLMRegistry. gemma3n_E2B_instruct
314
308
315
309
// Load the model
316
310
let modelContainer = try await memory. start { [ args] in
Original file line number Diff line number Diff line change 69
69
</CommandLineArgument >
70
70
<CommandLineArgument
71
71
argument = " --model mlx-community/Qwen3-1.7B-4bit --prompt " Explain quantum computing in simple terms" --max-tokens 100 --kv-bits 4"
72
+ isEnabled = " NO" >
73
+ </CommandLineArgument >
74
+ <CommandLineArgument
75
+ argument = " --prompt " Why is the sky blue?" --extra-eos-token "< end_of_turn>" "
72
76
isEnabled = " YES" >
73
77
</CommandLineArgument >
74
78
<CommandLineArgument
You can’t perform that action at this time.
0 commit comments