From b584e42d65edd336da90eed374ccfcac701e3daa Mon Sep 17 00:00:00 2001 From: Mark Randall Havens Date: Fri, 13 Mar 2026 09:30:46 +0000 Subject: [PATCH] Fix: Default to MiniMax provider --- opus_orchestrator/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opus_orchestrator/config.py b/opus_orchestrator/config.py index 0eeac87..c4e971d 100644 --- a/opus_orchestrator/config.py +++ b/opus_orchestrator/config.py @@ -90,8 +90,8 @@ def load_config_from_env() -> OpusConfig: default_model = "MiniMax/MiniMax-M2.1" api_key = minimax_key else: - provider = "openai" # default - default_model = "gpt-4o" + provider = "minimax" # Default to minimax + default_model = "MiniMax/MiniMax-M2.1" api_key = None github_token = _load_env("GITHUB_TOKEN")