经 AI Skill Hub 精选评估,MLX工作室 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
MLX工作室 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
MLX工作室 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 克隆仓库 git clone https://github.com/jjang-ai/mlxstudio cd mlxstudio # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 mlxstudio --help # 基本运行 mlxstudio [options] <input> # 详细使用说明请查阅文档 # https://github.com/jjang-ai/mlxstudio
# mlxstudio 配置说明 # 查看配置选项 mlxstudio --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export MLXSTUDIO_CONFIG="/path/to/config.yml"
<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="assets/logo-wide-dark.png"> <source media="(prefers-color-scheme: light)" srcset="assets/logo-wide-light.png"> <img alt="MLX Studio" src="assets/logo-wide-light.png" width="400"> </picture> </p>
<p align="center"> <a href="https://github.com/jjang-ai/mlxstudio/releases/latest"><img src="https://img.shields.io/github/v/release/jjang-ai/mlxstudio?style=flat-square&label=Latest%20Release&color=blue" alt="Latest Release"></a> <a href="https://github.com/jjang-ai/mlxstudio/releases"><img src="https://img.shields.io/github/downloads/jjang-ai/mlxstudio/total?style=flat-square&label=Downloads&color=green" alt="Downloads"></a> <img src="https://img.shields.io/badge/Platform-macOS%20ARM64-lightgrey?style=flat-square&logo=apple" alt="Platform"> <a href="https://pypi.org/project/vmlx/"><img src="https://img.shields.io/pypi/v/vmlx?style=flat-square&label=vMLX%20Engine&color=%234B8BBE&logo=python&logoColor=white" alt="PyPI"></a> <a href="https://github.com/jjang-ai/mlxstudio/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-orange?style=flat-square" alt="License"></a> <a href="https://ko-fi.com/jangml"><img src="https://img.shields.io/badge/Support-Ko--fi-FF5E5B?style=flat-square&logo=ko-fi&logoColor=white" alt="Ko-fi"></a> </p>
<p align="center"> <a href="https://github.com/jjang-ai/vmlx/releases?q=tag%3Av2&expanded=true"> <img src="https://img.shields.io/badge/%E2%AC%87%EF%B8%8F_Get_vMLX_v2_(Swift)-Recommended-orange?style=for-the-badge&logo=swift&logoColor=white" alt="Get vMLX v2 Swift" height="40"> </a> <a href="https://github.com/jjang-ai/mlxstudio/releases/latest"> <img src="https://img.shields.io/badge/Legacy_Python_Panel-1.4.0_DMG-lightgrey?style=for-the-badge&logo=python&logoColor=white" alt="Legacy Python DMG" height="40"> </a> </p>
<p align="center"> <b>vMLX v2 — native Swift + Metal, 50–95 t/s on M-series.</b><br> Zero PyTorch in the hot path. Pure SwiftUI. Drag and drop models.<br> The Python panel above remains available for legacy support. </p>
<p align="center"> <a href="#features">Features</a> • <a href="#screenshots">Screenshots</a> • <a href="#api-server">API Server</a> • <a href="#image-generation">Image Generation</a> • <a href="#advanced-quantization">JANG Quantization</a> • <a href="#system-requirements">Requirements</a> • <a href="#build-from-source">Build</a> • <a href="#한국어-korean">한국어</a> </p>
---
MLX Studio is a complete desktop app for running LLMs, VLMs, and image generation models locally on your Mac. No cloud, no API keys, no data leaving your machine. Supports every model on mlx-community -- Qwen, Llama, Mistral, Gemma, Phi, DeepSeek, and thousands more. Built on vMLX Engine and Apple's MLX framework.
JANG 2-bit destroys MLX 4-bit on MiniMax M2.5: | Quantization | MMLU (200q) | Size | |---|---|---| | JANG\_2L (2-bit) | 74% | 89 GB | | MLX 4-bit | 26.5% | 120 GB | | MLX 3-bit | 24.5% | 93 GB | | MLX 2-bit | 25% | 68 GB | Adaptive mixed-precision quantization keeps critical layers at higher precision while compressing the rest. Check scores at jangq.ai. Models at JANGQ-AI.
---
| Requirement | Minimum |
|---|---|
| **macOS** | 14.0 Sonoma or later |
| **Chip** | Apple Silicon (M1 / M2 / M3 / M4) |
| **RAM** | 8 GB (16 GB+ recommended for larger models) |
| **Disk** | ~500 MB for app; models range from 1-50 GB each |
---
The vMLX inference engine is published on PyPI as vmlx -- same engine that powers the desktop app, available as a standalone CLI. This is real, published software with 1,894+ tests.
```bash
python3 -m venv ~/.vmlx-env && source ~/.vmlx-env/bin/activate pip install vmlx vmlx serve mlx-community/Qwen3-8B-4bit ```
Note: On macOS 14+,pip install vmlxwithout a venv will fail with "externally-managed-environment". Useuv,pipx, or create a venv first.
Once running, your local OpenAI-compatible API server is live at http://localhost:8000. Point any OpenAI or Anthropic SDK client at it.
---
```bash git clone https://github.com/jjang-ai/vmlx.git cd vmlx
mlx-community/Qwen3-8B-4bit)That's it. The app manages the entire Python engine, model downloads, and server lifecycle for you.
---
![]() Chat Interface Streaming conversations with thinking mode, code highlighting, and markdown |
![]() Agentic Coding Full tool calling with file I/O, shell execution, and web search |
![]() Image Generation & Editing Flux Schnell, Dev, Z-Image Turbo, Klein + Qwen Image Edit |
![]() Anthropic API Compatible Drop-in /v1/messages endpoint for Anthropic SDK clients |
![]() Developer Tools Convert, inspect, and diagnose models |
![]() Model Conversion GGUF to MLX, 16-bit to quantized, and JANG adaptive mixed-precision |
![]() HuggingFace Browser Search and download models directly in-app |
![]() Menu Bar Running models, GPU memory, and quick controls |
---
Download the latest DMG -- one file, ready to go.
vMLX-X.Y.Z-arm64.dmgAll releases are code-signed and notarized by Apple for macOS Gatekeeper. No Homebrew, no pip, no Xcode required.
brew install uv uv tool install vmlx vmlx serve mlx-community/Qwen3-8B-4bit
Every session launches a full API server. Point any OpenAI SDK client at your local endpoint:
POST /v1/chat/completions -- Chat Completions API with streaming, tool calling, vision, structured outputPOST /v1/responses -- OpenAI Responses API (agentic format) with streamingPOST /v1/completions -- Text completionsPOST /v1/images/generations -- Image generation (Flux/Z-Image models, OpenAI format with usage field)POST /v1/images/edits -- Image editing (Qwen Image Edit, instruction-based)POST /v1/embeddings -- Text embeddings with dimension control and batch processingPOST /v1/rerank -- Document rerankingPOST /v1/audio/speech -- Text-to-speech (Kokoro TTS)POST /v1/audio/transcriptions -- Speech-to-text (Whisper)GET /v1/models -- List loaded modelsGET /health -- Server health with VRAM usage, queue length, load timesDrop-in replacement for the Anthropic Claude API:
POST /v1/messages -- Anthropic Messages API formatbase_url to your local serverFull-featured conversation UI:
Auto-detected tool call parsers for every major model family:
<tool_call> XML format<function=name> format[TOOL_CALLS] format<tool_call> JSON formatmodel_type in config.json with regex name fallback26+ Built-in Tools: - File I/O -- read, write, edit, patch, copy, move, delete, create directory, list directory, file info, insert text, replace lines, directory tree - Search -- ripgrep file search with regex and glob, glob file finder, unified diff - Execution -- shell commands (60s timeout), background processes (5m auto-kill), process output polling - Web -- DuckDuckGo search, Brave Search API, URL fetch with HTML-to-text - Developer -- token counter, regex find-replace across files, git operations, clipboard read/write, diagnostics (TypeScript/ESLint/Python linting) - Interactive -- ask_user tool for human-in-the-loop interrupts - Per-category toggles: enable/disable file, search, shell, web tools independently - Auto-continue agent loops (up to 10 tool iterations per request) - MCP (Model Context Protocol) -- connect external tool servers, merge tool definitions, execute MCP tools via API
高质量的AI工作流平台
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
AI Skill Hub 点评:MLX工作室 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | mlxstudio |
| Topics | aiai-agentsanthropic |
| GitHub | https://github.com/jjang-ai/mlxstudio |
收录时间:2026-06-05 · 更新时间:2026-06-05 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端