N8Programs's picture
Add MLX-VLM runtime, configuration, and model card
c179c12 verified
Raw
History Blame
223 Bytes
"""Run the MLX-VLM generation CLI with model-local runtime support."""
from mlx_vlm_model_file_loader import install
install()
from mlx_vlm.generate.cli import main # noqa: E402
if __name__ == "__main__":
main()