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 {
302302 let modelFactory : ModelFactory
303303 let defaultModel : ModelConfiguration
304304
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
314308
315309 // Load the model
316310 let modelContainer = try await memory. start { [ args] in
Original file line number Diff line number Diff line change 6969 </CommandLineArgument >
7070 <CommandLineArgument
7171 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>" "
7276 isEnabled = " YES" >
7377 </CommandLineArgument >
7478 <CommandLineArgument
You can’t perform that action at this time.
0 commit comments