Qwen3.6-35B-A3B-AntiLoop-NVFP4 / run_mlx_vlm_server.py
N8Programs's picture
Add MLX-VLM runtime, configuration, and model card
c179c12 verified
Raw
History Blame
218 Bytes
"""Run the MLX-VLM HTTP server with model-local runtime support."""
from mlx_vlm_model_file_loader import install
install()
from mlx_vlm.server.cli import main # noqa: E402
if __name__ == "__main__":
main()