From c252d86a33b938f4f6b63ee3d1d44a02e9b078d5 Mon Sep 17 00:00:00 2001 From: John | Elite Encoder Date: Wed, 24 Jun 2026 19:38:14 -0400 Subject: [PATCH 1/4] feat(blueclaw): add Blue Claw provider --- .../models/Qwen/Qwen3.6-35B-A3B-FP8.toml | 17 +++++++++++++++++ providers/blueclaw/models/Qwen3.6-27B.toml | 17 +++++++++++++++++ providers/blueclaw/provider.toml | 5 +++++ 3 files changed, 39 insertions(+) create mode 100644 providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml create mode 100644 providers/blueclaw/models/Qwen3.6-27B.toml create mode 100644 providers/blueclaw/provider.toml diff --git a/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml new file mode 100644 index 0000000000..6bee6ecf27 --- /dev/null +++ b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml @@ -0,0 +1,17 @@ +name = "Qwen3.6 35B A3B FP8" +family = "qwen" +attachment = false +reasoning = true +tool_call = true +temperature = true +open_weights = true +release_date = "2026-04-17" +last_updated = "2026-06-24" + +[limit] +context = 131_072 +output = 131_072 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/blueclaw/models/Qwen3.6-27B.toml b/providers/blueclaw/models/Qwen3.6-27B.toml new file mode 100644 index 0000000000..35bd2bfa61 --- /dev/null +++ b/providers/blueclaw/models/Qwen3.6-27B.toml @@ -0,0 +1,17 @@ +name = "Qwen3.6 27B" +family = "qwen" +attachment = false +reasoning = true +tool_call = true +temperature = true +open_weights = true +release_date = "2026-04-22" +last_updated = "2026-06-24" + +[limit] +context = 196_608 +output = 196_608 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/blueclaw/provider.toml b/providers/blueclaw/provider.toml new file mode 100644 index 0000000000..18baf6e8e5 --- /dev/null +++ b/providers/blueclaw/provider.toml @@ -0,0 +1,5 @@ +name = "Blue Claw" +npm = "@ai-sdk/openai-compatible" +api = "https://openai.blueclaw.network/v1" +env = ["BLUECLAW_API_KEY"] +doc = "https://blueclaw.network" From 4628979d6b6d22d33a8487bbb96f0226003e6fab Mon Sep 17 00:00:00 2001 From: eliteprox <16746274+eliteprox@users.noreply.github.com> Date: Tue, 7 Jul 2026 11:42:18 -0400 Subject: [PATCH 2/4] fix(blueclaw): address review feedback - add provider logo - factor both Qwen models through canonical alibaba base_model - declare explicit reasoning_options (toggle) - drop limit.output copied from combined context; inherit base value Co-Authored-By: Claude Fable 5 --- providers/blueclaw/logo.svg | 1 + .../blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml | 13 ++++--------- providers/blueclaw/models/Qwen3.6-27B.toml | 14 ++++---------- 3 files changed, 9 insertions(+), 19 deletions(-) create mode 100644 providers/blueclaw/logo.svg diff --git a/providers/blueclaw/logo.svg b/providers/blueclaw/logo.svg new file mode 100644 index 0000000000..ffb6dc441b --- /dev/null +++ b/providers/blueclaw/logo.svg @@ -0,0 +1 @@ + diff --git a/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml index 6bee6ecf27..ab468c03f6 100644 --- a/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml +++ b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml @@ -1,17 +1,12 @@ +base_model = "alibaba/qwen3.6-35b-a3b" name = "Qwen3.6 35B A3B FP8" -family = "qwen" attachment = false -reasoning = true -tool_call = true -temperature = true -open_weights = true -release_date = "2026-04-17" -last_updated = "2026-06-24" + +[[reasoning_options]] +type = "toggle" [limit] context = 131_072 -output = 131_072 [modalities] input = ["text"] -output = ["text"] diff --git a/providers/blueclaw/models/Qwen3.6-27B.toml b/providers/blueclaw/models/Qwen3.6-27B.toml index 35bd2bfa61..1fe6f95e0f 100644 --- a/providers/blueclaw/models/Qwen3.6-27B.toml +++ b/providers/blueclaw/models/Qwen3.6-27B.toml @@ -1,17 +1,11 @@ -name = "Qwen3.6 27B" -family = "qwen" +base_model = "alibaba/qwen3.6-27b" attachment = false -reasoning = true -tool_call = true -temperature = true -open_weights = true -release_date = "2026-04-22" -last_updated = "2026-06-24" + +[[reasoning_options]] +type = "toggle" [limit] context = 196_608 -output = 196_608 [modalities] input = ["text"] -output = ["text"] From 02c592bd8c6e287f15ffebf51c66e5a947206e8e Mon Sep 17 00:00:00 2001 From: eliteprox <16746274+eliteprox@users.noreply.github.com> Date: Wed, 8 Jul 2026 17:41:33 -0400 Subject: [PATCH 3/4] fix(blueclaw): replace embedded PNG logo with vector currentColor SVG Co-Authored-By: Claude Fable 5 --- providers/blueclaw/logo.svg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/providers/blueclaw/logo.svg b/providers/blueclaw/logo.svg index ffb6dc441b..03bef156a9 100644 --- a/providers/blueclaw/logo.svg +++ b/providers/blueclaw/logo.svg @@ -1 +1,3 @@ - + + + From c777f405877a6f620eafe4b33c2592b9f09df180 Mon Sep 17 00:00:00 2001 From: eliteprox <16746274+eliteprox@users.noreply.github.com> Date: Wed, 8 Jul 2026 17:57:19 -0400 Subject: [PATCH 4/4] fix(blueclaw): mark models as beta Co-Authored-By: Claude Fable 5 --- providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml | 1 + providers/blueclaw/models/Qwen3.6-27B.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml index ab468c03f6..3eb35ab625 100644 --- a/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml +++ b/providers/blueclaw/models/Qwen/Qwen3.6-35B-A3B-FP8.toml @@ -1,6 +1,7 @@ base_model = "alibaba/qwen3.6-35b-a3b" name = "Qwen3.6 35B A3B FP8" attachment = false +status = "beta" [[reasoning_options]] type = "toggle" diff --git a/providers/blueclaw/models/Qwen3.6-27B.toml b/providers/blueclaw/models/Qwen3.6-27B.toml index 1fe6f95e0f..1fb143e9a4 100644 --- a/providers/blueclaw/models/Qwen3.6-27B.toml +++ b/providers/blueclaw/models/Qwen3.6-27B.toml @@ -1,5 +1,6 @@ base_model = "alibaba/qwen3.6-27b" attachment = false +status = "beta" [[reasoning_options]] type = "toggle"