From 8e39dd5f172ad39f6322949290e307aebece2605 Mon Sep 17 00:00:00 2001 From: amankalra172 Date: Mon, 8 Jun 2026 12:33:24 +0200 Subject: [PATCH] feat(stackit): add GPT-OSS 20B and Qwen3.6 27B models New models available on STACKIT AI Model Serving: - openai/gpt-oss-20b: 131K context, 8192 output, tool calling + reasoning, 0.16/0.27 USD per 1M tokens - Qwen/Qwen3.6-27B: 262K context, 16384 output, tool calling (reasoning disabled on this deployment), 0.49/0.71 USD per 1M tokens Prices converted from EUR (0.15/0.25 and 0.45/0.65 respectively). --- .../stackit/models/Qwen/Qwen3.6-27B.toml | 22 +++++++++++++++++++ .../stackit/models/openai/gpt-oss-20b.toml | 22 +++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 providers/stackit/models/Qwen/Qwen3.6-27B.toml create mode 100644 providers/stackit/models/openai/gpt-oss-20b.toml diff --git a/providers/stackit/models/Qwen/Qwen3.6-27B.toml b/providers/stackit/models/Qwen/Qwen3.6-27B.toml new file mode 100644 index 000000000..eba632e6a --- /dev/null +++ b/providers/stackit/models/Qwen/Qwen3.6-27B.toml @@ -0,0 +1,22 @@ +name = "Qwen3.6 27B" +family = "qwen" +release_date = "2026-06-08" +last_updated = "2026-06-08" +attachment = false +reasoning = false +temperature = true +tool_call = true +structured_output = false +open_weights = true + +[cost] +input = 0.49 +output = 0.71 + +[limit] +context = 262_000 +output = 16_384 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/stackit/models/openai/gpt-oss-20b.toml b/providers/stackit/models/openai/gpt-oss-20b.toml new file mode 100644 index 000000000..cf0ef8de8 --- /dev/null +++ b/providers/stackit/models/openai/gpt-oss-20b.toml @@ -0,0 +1,22 @@ +name = "GPT-OSS 20B" +family = "gpt" +release_date = "2026-06-08" +last_updated = "2026-06-08" +attachment = false +reasoning = true +temperature = true +tool_call = true +structured_output = false +open_weights = true + +[cost] +input = 0.16 +output = 0.27 + +[limit] +context = 131_000 +output = 8_192 + +[modalities] +input = ["text"] +output = ["text"]