From a550644d5579455ee33aaf1212d34dd8aeb219e3 Mon Sep 17 00:00:00 2001 From: "xiaojie.zj" <799732469@qq.com> Date: Thu, 9 Jul 2026 20:27:36 +0800 Subject: [PATCH] feat(zenmux): add Grok 4.5/Free, Ring-2.6-1T, KAT-Coder-Pro/Air-V2.5 --- models/kuaishou/kat-coder-air-v2.5.toml | 18 ++++++++++++++++++ models/kuaishou/kat-coder-pro-v2.5.toml | 18 ++++++++++++++++++ models/x-ai/grok-4.5.toml | 18 ++++++++++++++++++ .../zenmux/models/inclusionai/ring-2.6-1t.toml | 11 +++++++++++ .../models/kuaishou/kat-coder-air-v2.5.toml | 10 ++++++++++ .../models/kuaishou/kat-coder-pro-v2.5.toml | 10 ++++++++++ .../zenmux/models/x-ai/grok-4.5-free.toml | 12 ++++++++++++ providers/zenmux/models/x-ai/grok-4.5.toml | 11 +++++++++++ 8 files changed, 108 insertions(+) create mode 100644 models/kuaishou/kat-coder-air-v2.5.toml create mode 100644 models/kuaishou/kat-coder-pro-v2.5.toml create mode 100644 models/x-ai/grok-4.5.toml create mode 100644 providers/zenmux/models/inclusionai/ring-2.6-1t.toml create mode 100644 providers/zenmux/models/kuaishou/kat-coder-air-v2.5.toml create mode 100644 providers/zenmux/models/kuaishou/kat-coder-pro-v2.5.toml create mode 100644 providers/zenmux/models/x-ai/grok-4.5-free.toml create mode 100644 providers/zenmux/models/x-ai/grok-4.5.toml diff --git a/models/kuaishou/kat-coder-air-v2.5.toml b/models/kuaishou/kat-coder-air-v2.5.toml new file mode 100644 index 0000000000..29510b6764 --- /dev/null +++ b/models/kuaishou/kat-coder-air-v2.5.toml @@ -0,0 +1,18 @@ +name = "KAT-Coder-Air-V2.5" +description = "KAT-Coder-Air-V2.5 model" +family = "kat-coder" +release_date = "2026-07-08" +last_updated = "2026-07-08" +attachment = false +reasoning = false +temperature = true +tool_call = true +open_weights = false + +[limit] +context = 256_000 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/models/kuaishou/kat-coder-pro-v2.5.toml b/models/kuaishou/kat-coder-pro-v2.5.toml new file mode 100644 index 0000000000..9309315760 --- /dev/null +++ b/models/kuaishou/kat-coder-pro-v2.5.toml @@ -0,0 +1,18 @@ +name = "KAT-Coder-Pro-V2.5" +description = "KAT-Coder-Pro-V2.5 model" +family = "kat-coder" +release_date = "2026-07-08" +last_updated = "2026-07-08" +attachment = false +reasoning = false +temperature = true +tool_call = true +open_weights = false + +[limit] +context = 256_000 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/models/x-ai/grok-4.5.toml b/models/x-ai/grok-4.5.toml new file mode 100644 index 0000000000..b6358c8347 --- /dev/null +++ b/models/x-ai/grok-4.5.toml @@ -0,0 +1,18 @@ +name = "Grok 4.5" +description = "Grok 4.5 model" +family = "grok" +release_date = "2026-07-09" +last_updated = "2026-07-09" +attachment = true +reasoning = true +temperature = true +tool_call = true +open_weights = false + +[limit] +context = 500_000 +output = 32_768 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/zenmux/models/inclusionai/ring-2.6-1t.toml b/providers/zenmux/models/inclusionai/ring-2.6-1t.toml new file mode 100644 index 0000000000..94739fa6b2 --- /dev/null +++ b/providers/zenmux/models/inclusionai/ring-2.6-1t.toml @@ -0,0 +1,11 @@ +base_model = "inclusionai/ring-2.6-1t" +reasoning_options = [] + +[cost] +input = 0.1318155 +output = 1.0984625 +cache_read = 0.0263631 + +[provider] +npm = "@ai-sdk/anthropic" +api = "https://zenmux.ai/api/anthropic/v1" diff --git a/providers/zenmux/models/kuaishou/kat-coder-air-v2.5.toml b/providers/zenmux/models/kuaishou/kat-coder-air-v2.5.toml new file mode 100644 index 0000000000..dc545d9f76 --- /dev/null +++ b/providers/zenmux/models/kuaishou/kat-coder-air-v2.5.toml @@ -0,0 +1,10 @@ +base_model = "kuaishou/kat-coder-air-v2.5" + +[cost] +input = 0.135 +output = 0.54 +cache_read = 0.027 + +[provider] +npm = "@ai-sdk/anthropic" +api = "https://zenmux.ai/api/anthropic/v1" diff --git a/providers/zenmux/models/kuaishou/kat-coder-pro-v2.5.toml b/providers/zenmux/models/kuaishou/kat-coder-pro-v2.5.toml new file mode 100644 index 0000000000..5c9024587a --- /dev/null +++ b/providers/zenmux/models/kuaishou/kat-coder-pro-v2.5.toml @@ -0,0 +1,10 @@ +base_model = "kuaishou/kat-coder-pro-v2.5" + +[cost] +input = 0.444 +output = 1.776 +cache_read = 0.09 + +[provider] +npm = "@ai-sdk/anthropic" +api = "https://zenmux.ai/api/anthropic/v1" diff --git a/providers/zenmux/models/x-ai/grok-4.5-free.toml b/providers/zenmux/models/x-ai/grok-4.5-free.toml new file mode 100644 index 0000000000..18949b9fac --- /dev/null +++ b/providers/zenmux/models/x-ai/grok-4.5-free.toml @@ -0,0 +1,12 @@ +base_model = "x-ai/grok-4.5" +name = "Grok 4.5 (Free)" +reasoning_options = [] + +[cost] +input = 0 +output = 0 +cache_read = 0 + +[provider] +npm = "@ai-sdk/anthropic" +api = "https://zenmux.ai/api/anthropic/v1" diff --git a/providers/zenmux/models/x-ai/grok-4.5.toml b/providers/zenmux/models/x-ai/grok-4.5.toml new file mode 100644 index 0000000000..098142aaf9 --- /dev/null +++ b/providers/zenmux/models/x-ai/grok-4.5.toml @@ -0,0 +1,11 @@ +base_model = "x-ai/grok-4.5" +reasoning_options = [] + +[cost] +input = 2 +output = 6 +cache_read = 0.5 + +[provider] +npm = "@ai-sdk/anthropic" +api = "https://zenmux.ai/api/anthropic/v1"