From ee35ea9a03d7ecb78b6742927f9431072ed88867 Mon Sep 17 00:00:00 2001 From: Soren Juul Date: Mon, 22 Jun 2026 11:09:25 +0200 Subject: [PATCH 1/2] feat(abacus): add 21 new provider model configurations --- .../abacus/models/MiniMaxAI/MiniMax-M2.7.toml | 13 +++++++++++++ providers/abacus/models/MiniMaxAI/MiniMax-M3.toml | 13 +++++++++++++ providers/abacus/models/Qwen/Qwen3.6-27B.toml | 13 +++++++++++++ providers/abacus/models/claude-opus-4-7.toml | 14 ++++++++++++++ providers/abacus/models/claude-opus-4-8.toml | 14 ++++++++++++++ .../models/deepseek-ai/DeepSeek-V4-Flash.toml | 14 ++++++++++++++ .../abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml | 14 ++++++++++++++ providers/abacus/models/gemini-3.1-flash-lite.toml | 14 ++++++++++++++ providers/abacus/models/gemini-3.5-flash.toml | 14 ++++++++++++++ providers/abacus/models/google/gemma-4-31b-it.toml | 13 +++++++++++++ providers/abacus/models/gpt-4o.toml | 14 ++++++++++++++ providers/abacus/models/gpt-5.4-mini.toml | 14 ++++++++++++++ providers/abacus/models/gpt-5.4-nano.toml | 14 ++++++++++++++ providers/abacus/models/gpt-5.5.toml | 14 ++++++++++++++ .../models/grok-4.20-beta-0309-non-reasoning.toml | 13 +++++++++++++ providers/abacus/models/grok-4.3.toml | 14 ++++++++++++++ providers/abacus/models/mimo-v2-pro.toml | 14 ++++++++++++++ providers/abacus/models/moonshotai/Kimi-K2.6.toml | 14 ++++++++++++++ .../abacus/models/moonshotai/Kimi-K2.7-Code.toml | 14 ++++++++++++++ providers/abacus/models/qwen3.6-plus.toml | 13 +++++++++++++ providers/abacus/models/zai-org/GLM-5.1.toml | 14 ++++++++++++++ providers/abacus/models/zai-org/GLM-5.2.toml | 14 ++++++++++++++ 22 files changed, 302 insertions(+) create mode 100644 providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml create mode 100644 providers/abacus/models/MiniMaxAI/MiniMax-M3.toml create mode 100644 providers/abacus/models/Qwen/Qwen3.6-27B.toml create mode 100644 providers/abacus/models/claude-opus-4-7.toml create mode 100644 providers/abacus/models/claude-opus-4-8.toml create mode 100644 providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml create mode 100644 providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml create mode 100644 providers/abacus/models/gemini-3.1-flash-lite.toml create mode 100644 providers/abacus/models/gemini-3.5-flash.toml create mode 100644 providers/abacus/models/google/gemma-4-31b-it.toml create mode 100644 providers/abacus/models/gpt-4o.toml create mode 100644 providers/abacus/models/gpt-5.4-mini.toml create mode 100644 providers/abacus/models/gpt-5.4-nano.toml create mode 100644 providers/abacus/models/gpt-5.5.toml create mode 100644 providers/abacus/models/grok-4.20-beta-0309-non-reasoning.toml create mode 100644 providers/abacus/models/grok-4.3.toml create mode 100644 providers/abacus/models/mimo-v2-pro.toml create mode 100644 providers/abacus/models/moonshotai/Kimi-K2.6.toml create mode 100644 providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml create mode 100644 providers/abacus/models/qwen3.6-plus.toml create mode 100644 providers/abacus/models/zai-org/GLM-5.1.toml create mode 100644 providers/abacus/models/zai-org/GLM-5.2.toml diff --git a/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml b/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml new file mode 100644 index 0000000000..cbf9fcce5b --- /dev/null +++ b/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml @@ -0,0 +1,13 @@ +base_model = "minimax/MiniMax-M2.7" + +[cost] +input = 0.30 +output = 1.20 + +[limit] +context = 204_800 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml b/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml new file mode 100644 index 0000000000..d4fd9e1733 --- /dev/null +++ b/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml @@ -0,0 +1,13 @@ +base_model = "minimax/MiniMax-M3" + +[cost] +input = 0.30 +output = 1.20 + +[limit] +context = 1_000_000 +output = 131_072 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/abacus/models/Qwen/Qwen3.6-27B.toml b/providers/abacus/models/Qwen/Qwen3.6-27B.toml new file mode 100644 index 0000000000..7f3401bd05 --- /dev/null +++ b/providers/abacus/models/Qwen/Qwen3.6-27B.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3.6-27b" + +[cost] +input = 0.32 +output = 3.20 + +[limit] +context = 262_144 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/claude-opus-4-7.toml b/providers/abacus/models/claude-opus-4-7.toml new file mode 100644 index 0000000000..22ef5ac0b5 --- /dev/null +++ b/providers/abacus/models/claude-opus-4-7.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-7" +temperature = true + +[cost] +input = 5.00 +output = 25.00 + +[limit] +context = 1_000_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/claude-opus-4-8.toml b/providers/abacus/models/claude-opus-4-8.toml new file mode 100644 index 0000000000..27aad846c7 --- /dev/null +++ b/providers/abacus/models/claude-opus-4-8.toml @@ -0,0 +1,14 @@ +base_model = "anthropic/claude-opus-4-8" +temperature = true + +[cost] +input = 5.00 +output = 25.00 + +[limit] +context = 1_000_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml new file mode 100644 index 0000000000..3c949d7e76 --- /dev/null +++ b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml @@ -0,0 +1,14 @@ +base_model = "deepseek/deepseek-v4-flash" + +[cost] +input = 0.14 +output = 0.28 +cache_read = 0.03 + +[limit] +context = 1_000_000 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml new file mode 100644 index 0000000000..d126fdbc2f --- /dev/null +++ b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml @@ -0,0 +1,14 @@ +base_model = "deepseek/deepseek-v4-pro" + +[cost] +input = 1.74 +output = 3.48 +cache_read = 0.15 + +[limit] +context = 1_000_000 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/gemini-3.1-flash-lite.toml b/providers/abacus/models/gemini-3.1-flash-lite.toml new file mode 100644 index 0000000000..b0048e2b3c --- /dev/null +++ b/providers/abacus/models/gemini-3.1-flash-lite.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.1-flash-lite" + +[cost] +input = 0.25 +output = 1.50 +cache_read = 0.02 + +[limit] +context = 1_048_576 +output = 65_536 + +[modalities] +input = ["text", "image", "audio"] +output = ["text"] diff --git a/providers/abacus/models/gemini-3.5-flash.toml b/providers/abacus/models/gemini-3.5-flash.toml new file mode 100644 index 0000000000..2739abcea7 --- /dev/null +++ b/providers/abacus/models/gemini-3.5-flash.toml @@ -0,0 +1,14 @@ +base_model = "google/gemini-3.5-flash" + +[cost] +input = 1.50 +output = 9.00 +cache_read = 0.15 + +[limit] +context = 1_048_576 +output = 65_536 + +[modalities] +input = ["text", "image", "audio"] +output = ["text"] diff --git a/providers/abacus/models/google/gemma-4-31b-it.toml b/providers/abacus/models/google/gemma-4-31b-it.toml new file mode 100644 index 0000000000..377278f161 --- /dev/null +++ b/providers/abacus/models/google/gemma-4-31b-it.toml @@ -0,0 +1,13 @@ +base_model = "google/gemma-4-31b-it" + +[cost] +input = 0.14 +output = 0.40 + +[limit] +context = 262_144 +output = 131_072 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/gpt-4o.toml b/providers/abacus/models/gpt-4o.toml new file mode 100644 index 0000000000..5fb4620375 --- /dev/null +++ b/providers/abacus/models/gpt-4o.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-4o" + +[cost] +input = 2.50 +output = 10.00 +cache_read = 1.25 + +[limit] +context = 128_000 +output = 16_384 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/gpt-5.4-mini.toml b/providers/abacus/models/gpt-5.4-mini.toml new file mode 100644 index 0000000000..fa65fa4e2f --- /dev/null +++ b/providers/abacus/models/gpt-5.4-mini.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.4-mini" + +[cost] +input = 0.75 +output = 4.50 +cache_read = 0.07 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/gpt-5.4-nano.toml b/providers/abacus/models/gpt-5.4-nano.toml new file mode 100644 index 0000000000..e8419e31ab --- /dev/null +++ b/providers/abacus/models/gpt-5.4-nano.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.4-nano" + +[cost] +input = 0.20 +output = 1.25 +cache_read = 0.02 + +[limit] +context = 400_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/gpt-5.5.toml b/providers/abacus/models/gpt-5.5.toml new file mode 100644 index 0000000000..a841d3a840 --- /dev/null +++ b/providers/abacus/models/gpt-5.5.toml @@ -0,0 +1,14 @@ +base_model = "openai/gpt-5.5" + +[cost] +input = 5.00 +output = 30.00 +cache_read = 0.50 + +[limit] +context = 1_000_000 +output = 128_000 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/grok-4.20-beta-0309-non-reasoning.toml b/providers/abacus/models/grok-4.20-beta-0309-non-reasoning.toml new file mode 100644 index 0000000000..a2aad84ab0 --- /dev/null +++ b/providers/abacus/models/grok-4.20-beta-0309-non-reasoning.toml @@ -0,0 +1,13 @@ +base_model = "xai/grok-4.20-0309-non-reasoning" + +[cost] +input = 2.00 +output = 6.00 + +[limit] +context = 2_097_152 +output = 32_768 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/grok-4.3.toml b/providers/abacus/models/grok-4.3.toml new file mode 100644 index 0000000000..e371885133 --- /dev/null +++ b/providers/abacus/models/grok-4.3.toml @@ -0,0 +1,14 @@ +base_model = "xai/grok-4.3" + +[cost] +input = 1.25 +output = 2.50 +cache_read = 0.20 + +[limit] +context = 1_000_000 +output = 32_768 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/abacus/models/mimo-v2-pro.toml b/providers/abacus/models/mimo-v2-pro.toml new file mode 100644 index 0000000000..bf90958377 --- /dev/null +++ b/providers/abacus/models/mimo-v2-pro.toml @@ -0,0 +1,14 @@ +base_model = "xiaomi/mimo-v2-pro" + +[cost] +input = 1.00 +output = 3.00 +cache_read = 0.20 + +[limit] +context = 1_048_576 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/moonshotai/Kimi-K2.6.toml b/providers/abacus/models/moonshotai/Kimi-K2.6.toml new file mode 100644 index 0000000000..8a088ece38 --- /dev/null +++ b/providers/abacus/models/moonshotai/Kimi-K2.6.toml @@ -0,0 +1,14 @@ +base_model = "moonshotai/kimi-k2.6" + +[cost] +input = 0.95 +output = 4.00 +cache_read = 0.19 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml b/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml new file mode 100644 index 0000000000..9e55c3114a --- /dev/null +++ b/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml @@ -0,0 +1,14 @@ +base_model = "moonshotai/kimi-k2.7-code" + +[cost] +input = 0.95 +output = 4.00 +cache_read = 0.19 + +[limit] +context = 262_144 +output = 262_144 + +[modalities] +input = ["text", "image", "video"] +output = ["text"] diff --git a/providers/abacus/models/qwen3.6-plus.toml b/providers/abacus/models/qwen3.6-plus.toml new file mode 100644 index 0000000000..23ae9a5f1b --- /dev/null +++ b/providers/abacus/models/qwen3.6-plus.toml @@ -0,0 +1,13 @@ +base_model = "alibaba/qwen3.6-plus" + +[cost] +input = 0.50 +output = 3.00 + +[limit] +context = 131_072 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/zai-org/GLM-5.1.toml b/providers/abacus/models/zai-org/GLM-5.1.toml new file mode 100644 index 0000000000..39af8d5d38 --- /dev/null +++ b/providers/abacus/models/zai-org/GLM-5.1.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.1" + +[cost] +input = 1.40 +output = 4.40 +cache_read = 0.26 + +[limit] +context = 204_800 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/abacus/models/zai-org/GLM-5.2.toml b/providers/abacus/models/zai-org/GLM-5.2.toml new file mode 100644 index 0000000000..997f30f087 --- /dev/null +++ b/providers/abacus/models/zai-org/GLM-5.2.toml @@ -0,0 +1,14 @@ +base_model = "zhipuai/glm-5.2" + +[cost] +input = 1.40 +output = 4.40 +cache_read = 0.26 + +[limit] +context = 1_048_576 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] From 04155b9b61e7acfa4f5c4d645f2b29baa8f77c25 Mon Sep 17 00:00:00 2001 From: Soren Juul Date: Sun, 28 Jun 2026 22:30:30 +0200 Subject: [PATCH 2/2] fix(abacus): add reasoning_options to inherited reasoning models Add explicit provider-specific reasoning_options = [] to Abacus models that inherit reasoning capability from base_model, since no Abacus caller controls were verified. Also remove incorrect temperature = true overrides from Claude Opus 4.7 and 4.8. --- providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml | 1 + providers/abacus/models/MiniMaxAI/MiniMax-M3.toml | 1 + providers/abacus/models/Qwen/Qwen3.6-27B.toml | 1 + providers/abacus/models/claude-opus-4-7.toml | 2 +- providers/abacus/models/claude-opus-4-8.toml | 2 +- providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml | 1 + providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml | 1 + providers/abacus/models/gemini-3.1-flash-lite.toml | 1 + providers/abacus/models/gemini-3.5-flash.toml | 1 + providers/abacus/models/google/gemma-4-31b-it.toml | 1 + providers/abacus/models/gpt-5.4-mini.toml | 1 + providers/abacus/models/gpt-5.4-nano.toml | 1 + providers/abacus/models/gpt-5.5.toml | 1 + providers/abacus/models/grok-4.3.toml | 1 + providers/abacus/models/mimo-v2-pro.toml | 1 + providers/abacus/models/moonshotai/Kimi-K2.6.toml | 1 + providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml | 1 + providers/abacus/models/qwen3.6-plus.toml | 1 + providers/abacus/models/zai-org/GLM-5.1.toml | 1 + providers/abacus/models/zai-org/GLM-5.2.toml | 1 + 20 files changed, 20 insertions(+), 2 deletions(-) diff --git a/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml b/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml index cbf9fcce5b..9c5cbe9775 100644 --- a/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml +++ b/providers/abacus/models/MiniMaxAI/MiniMax-M2.7.toml @@ -1,4 +1,5 @@ base_model = "minimax/MiniMax-M2.7" +reasoning_options = [] [cost] input = 0.30 diff --git a/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml b/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml index d4fd9e1733..3790b256e7 100644 --- a/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml +++ b/providers/abacus/models/MiniMaxAI/MiniMax-M3.toml @@ -1,4 +1,5 @@ base_model = "minimax/MiniMax-M3" +reasoning_options = [] [cost] input = 0.30 diff --git a/providers/abacus/models/Qwen/Qwen3.6-27B.toml b/providers/abacus/models/Qwen/Qwen3.6-27B.toml index 7f3401bd05..70ca35254b 100644 --- a/providers/abacus/models/Qwen/Qwen3.6-27B.toml +++ b/providers/abacus/models/Qwen/Qwen3.6-27B.toml @@ -1,4 +1,5 @@ base_model = "alibaba/qwen3.6-27b" +reasoning_options = [] [cost] input = 0.32 diff --git a/providers/abacus/models/claude-opus-4-7.toml b/providers/abacus/models/claude-opus-4-7.toml index 22ef5ac0b5..8905e61dc5 100644 --- a/providers/abacus/models/claude-opus-4-7.toml +++ b/providers/abacus/models/claude-opus-4-7.toml @@ -1,5 +1,5 @@ base_model = "anthropic/claude-opus-4-7" -temperature = true +reasoning_options = [] [cost] input = 5.00 diff --git a/providers/abacus/models/claude-opus-4-8.toml b/providers/abacus/models/claude-opus-4-8.toml index 27aad846c7..799a13a568 100644 --- a/providers/abacus/models/claude-opus-4-8.toml +++ b/providers/abacus/models/claude-opus-4-8.toml @@ -1,5 +1,5 @@ base_model = "anthropic/claude-opus-4-8" -temperature = true +reasoning_options = [] [cost] input = 5.00 diff --git a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml index 3c949d7e76..1fb83d0ddc 100644 --- a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml +++ b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Flash.toml @@ -1,4 +1,5 @@ base_model = "deepseek/deepseek-v4-flash" +reasoning_options = [] [cost] input = 0.14 diff --git a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml index d126fdbc2f..d02377146f 100644 --- a/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml +++ b/providers/abacus/models/deepseek-ai/DeepSeek-V4-Pro.toml @@ -1,4 +1,5 @@ base_model = "deepseek/deepseek-v4-pro" +reasoning_options = [] [cost] input = 1.74 diff --git a/providers/abacus/models/gemini-3.1-flash-lite.toml b/providers/abacus/models/gemini-3.1-flash-lite.toml index b0048e2b3c..2079c6db65 100644 --- a/providers/abacus/models/gemini-3.1-flash-lite.toml +++ b/providers/abacus/models/gemini-3.1-flash-lite.toml @@ -1,4 +1,5 @@ base_model = "google/gemini-3.1-flash-lite" +reasoning_options = [] [cost] input = 0.25 diff --git a/providers/abacus/models/gemini-3.5-flash.toml b/providers/abacus/models/gemini-3.5-flash.toml index 2739abcea7..7d0b262156 100644 --- a/providers/abacus/models/gemini-3.5-flash.toml +++ b/providers/abacus/models/gemini-3.5-flash.toml @@ -1,4 +1,5 @@ base_model = "google/gemini-3.5-flash" +reasoning_options = [] [cost] input = 1.50 diff --git a/providers/abacus/models/google/gemma-4-31b-it.toml b/providers/abacus/models/google/gemma-4-31b-it.toml index 377278f161..b6ce5061f9 100644 --- a/providers/abacus/models/google/gemma-4-31b-it.toml +++ b/providers/abacus/models/google/gemma-4-31b-it.toml @@ -1,4 +1,5 @@ base_model = "google/gemma-4-31b-it" +reasoning_options = [] [cost] input = 0.14 diff --git a/providers/abacus/models/gpt-5.4-mini.toml b/providers/abacus/models/gpt-5.4-mini.toml index fa65fa4e2f..50d7dceec0 100644 --- a/providers/abacus/models/gpt-5.4-mini.toml +++ b/providers/abacus/models/gpt-5.4-mini.toml @@ -1,4 +1,5 @@ base_model = "openai/gpt-5.4-mini" +reasoning_options = [] [cost] input = 0.75 diff --git a/providers/abacus/models/gpt-5.4-nano.toml b/providers/abacus/models/gpt-5.4-nano.toml index e8419e31ab..86e29a0141 100644 --- a/providers/abacus/models/gpt-5.4-nano.toml +++ b/providers/abacus/models/gpt-5.4-nano.toml @@ -1,4 +1,5 @@ base_model = "openai/gpt-5.4-nano" +reasoning_options = [] [cost] input = 0.20 diff --git a/providers/abacus/models/gpt-5.5.toml b/providers/abacus/models/gpt-5.5.toml index a841d3a840..2786331983 100644 --- a/providers/abacus/models/gpt-5.5.toml +++ b/providers/abacus/models/gpt-5.5.toml @@ -1,4 +1,5 @@ base_model = "openai/gpt-5.5" +reasoning_options = [] [cost] input = 5.00 diff --git a/providers/abacus/models/grok-4.3.toml b/providers/abacus/models/grok-4.3.toml index e371885133..382c6071fd 100644 --- a/providers/abacus/models/grok-4.3.toml +++ b/providers/abacus/models/grok-4.3.toml @@ -1,4 +1,5 @@ base_model = "xai/grok-4.3" +reasoning_options = [] [cost] input = 1.25 diff --git a/providers/abacus/models/mimo-v2-pro.toml b/providers/abacus/models/mimo-v2-pro.toml index bf90958377..87afda59a8 100644 --- a/providers/abacus/models/mimo-v2-pro.toml +++ b/providers/abacus/models/mimo-v2-pro.toml @@ -1,4 +1,5 @@ base_model = "xiaomi/mimo-v2-pro" +reasoning_options = [] [cost] input = 1.00 diff --git a/providers/abacus/models/moonshotai/Kimi-K2.6.toml b/providers/abacus/models/moonshotai/Kimi-K2.6.toml index 8a088ece38..4ecafd1406 100644 --- a/providers/abacus/models/moonshotai/Kimi-K2.6.toml +++ b/providers/abacus/models/moonshotai/Kimi-K2.6.toml @@ -1,4 +1,5 @@ base_model = "moonshotai/kimi-k2.6" +reasoning_options = [] [cost] input = 0.95 diff --git a/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml b/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml index 9e55c3114a..415bc0c4b0 100644 --- a/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml +++ b/providers/abacus/models/moonshotai/Kimi-K2.7-Code.toml @@ -1,4 +1,5 @@ base_model = "moonshotai/kimi-k2.7-code" +reasoning_options = [] [cost] input = 0.95 diff --git a/providers/abacus/models/qwen3.6-plus.toml b/providers/abacus/models/qwen3.6-plus.toml index 23ae9a5f1b..8199a8993c 100644 --- a/providers/abacus/models/qwen3.6-plus.toml +++ b/providers/abacus/models/qwen3.6-plus.toml @@ -1,4 +1,5 @@ base_model = "alibaba/qwen3.6-plus" +reasoning_options = [] [cost] input = 0.50 diff --git a/providers/abacus/models/zai-org/GLM-5.1.toml b/providers/abacus/models/zai-org/GLM-5.1.toml index 39af8d5d38..7f8d9d2954 100644 --- a/providers/abacus/models/zai-org/GLM-5.1.toml +++ b/providers/abacus/models/zai-org/GLM-5.1.toml @@ -1,4 +1,5 @@ base_model = "zhipuai/glm-5.1" +reasoning_options = [] [cost] input = 1.40 diff --git a/providers/abacus/models/zai-org/GLM-5.2.toml b/providers/abacus/models/zai-org/GLM-5.2.toml index 997f30f087..a1ee8cd5bc 100644 --- a/providers/abacus/models/zai-org/GLM-5.2.toml +++ b/providers/abacus/models/zai-org/GLM-5.2.toml @@ -1,4 +1,5 @@ base_model = "zhipuai/glm-5.2" +reasoning_options = [] [cost] input = 1.40