Models
Browser, Ollama, and Rapid MLX model selection in OpenGPT0.
OpenGPT0 model IDs use the format provider/model-id. The default product keeps this list short:
browser/chatgptfor ChatGPT through the Browser provider.ollama/qwen3.5:9b-mlxfor the built-in Ollama local model.rapid-mlx/qwen3.5-9b-4bitfor the built-in Rapid MLX local model.
Default Model
For the product experience, use Browser:
{ "$schema": "https://opengpt0.com/config.json", "model": "browser/chatgpt"}Browser Variants
Browser exposes ChatGPT intelligence variants through the same browser/chatgpt model:
instantmediumhighextra-highpro
Local Models
For local usage, install Ollama, pull the built-in model, then select the matching OpenGPT0 model ID:
ollama pull qwen3.5:9b-mlx{ "$schema": "https://opengpt0.com/config.json", "model": "ollama/qwen3.5:9b-mlx"}For Rapid MLX, point the local runtime at http://127.0.0.1:8080/v1 and select:
{ "$schema": "https://opengpt0.com/config.json", "model": "rapid-mlx/qwen3.5-9b-4bit"}Only Browser, Ollama, and Rapid MLX models are built in. Keeping the model list narrow makes the product easier to test and keeps provider behavior explicit.