From e8f2f6b14ff2e72833751d760608e6dc52da54b0 Mon Sep 17 00:00:00 2001 From: Ruben Beuker Date: Thu, 12 Feb 2026 22:35:23 +0100 Subject: [PATCH] feat(nano-gpt): add MiniMax M2.5 route and align official variant --- .../models/minimax/minimax-m2.5-official.toml | 5 +--- .../nano-gpt/models/minimax/minimax-m2.5.toml | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 providers/nano-gpt/models/minimax/minimax-m2.5.toml diff --git a/providers/nano-gpt/models/minimax/minimax-m2.5-official.toml b/providers/nano-gpt/models/minimax/minimax-m2.5-official.toml index 84e6396fd..7173c45ec 100644 --- a/providers/nano-gpt/models/minimax/minimax-m2.5-official.toml +++ b/providers/nano-gpt/models/minimax/minimax-m2.5-official.toml @@ -3,15 +3,12 @@ family = "minimax" release_date = "2026-02-12" last_updated = "2026-02-12" attachment = false -reasoning = true +reasoning = false temperature = true tool_call = true structured_output = true open_weights = false -[interleaved] -field = "reasoning_content" - [cost] input = 0.30 output = 1.20 diff --git a/providers/nano-gpt/models/minimax/minimax-m2.5.toml b/providers/nano-gpt/models/minimax/minimax-m2.5.toml new file mode 100644 index 000000000..84e6396fd --- /dev/null +++ b/providers/nano-gpt/models/minimax/minimax-m2.5.toml @@ -0,0 +1,25 @@ +name = "MiniMax M2.5" +family = "minimax" +release_date = "2026-02-12" +last_updated = "2026-02-12" +attachment = false +reasoning = true +temperature = true +tool_call = true +structured_output = true +open_weights = false + +[interleaved] +field = "reasoning_content" + +[cost] +input = 0.30 +output = 1.20 + +[limit] +context = 204800 +output = 131072 + +[modalities] +input = ["text"] +output = ["text"]