From 7d4f5ee314310d46bf09d4420c239cedc5905cd0 Mon Sep 17 00:00:00 2001 From: Toine Date: Sat, 14 Mar 2026 18:07:18 +0100 Subject: [PATCH 1/2] new provider AKI.IO --- providers/aki/logo.svg | 8 +++++++ .../models/MiniMaxAI/minimax-m2.5-230b.toml | 21 ++++++++++++++++++ providers/aki/models/Qwen/qwen3.5-35b.toml | 21 ++++++++++++++++++ providers/aki/models/openai/gpt-oss-120b.toml | 22 +++++++++++++++++++ providers/aki/provider.toml | 5 +++++ 5 files changed, 77 insertions(+) create mode 100644 providers/aki/logo.svg create mode 100644 providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml create mode 100644 providers/aki/models/Qwen/qwen3.5-35b.toml create mode 100644 providers/aki/models/openai/gpt-oss-120b.toml create mode 100644 providers/aki/provider.toml diff --git a/providers/aki/logo.svg b/providers/aki/logo.svg new file mode 100644 index 000000000..47f30297b --- /dev/null +++ b/providers/aki/logo.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml b/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml new file mode 100644 index 000000000..290ced0ed --- /dev/null +++ b/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml @@ -0,0 +1,21 @@ +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 +open_weights = true + +[cost] +input = 0.50 +output = 2.50 + +[limit] +context = 190_000 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/aki/models/Qwen/qwen3.5-35b.toml b/providers/aki/models/Qwen/qwen3.5-35b.toml new file mode 100644 index 000000000..25e22e409 --- /dev/null +++ b/providers/aki/models/Qwen/qwen3.5-35b.toml @@ -0,0 +1,21 @@ +name = "Qwen3.5 35B A3B" +family = "qwen" +release_date = "2026-02-16" +last_updated = "2026-02-16" +attachment = false +reasoning = true +temperature = true +tool_call = true +open_weights = true + +[cost] +input = 0.25 +output = 0.50 + +[limit] +context = 200_000 +output = 32_768 + +[modalities] +input = ["text", "image"] +output = ["text"] diff --git a/providers/aki/models/openai/gpt-oss-120b.toml b/providers/aki/models/openai/gpt-oss-120b.toml new file mode 100644 index 000000000..1d3fcd56f --- /dev/null +++ b/providers/aki/models/openai/gpt-oss-120b.toml @@ -0,0 +1,22 @@ +name = "gpt-oss-120b" +family = "gpt" +release_date = "2025-08-05" +last_updated = "2025-08-05" +attachment = false +reasoning = true +temperature = true +tool_call = true +structured_output = false +open_weights = true + +[cost] +input = 0.15 +output = 0.55 + +[limit] +context = 120_000 +output = 32_768 + +[modalities] +input = ["text"] +output = ["text"] diff --git a/providers/aki/provider.toml b/providers/aki/provider.toml new file mode 100644 index 000000000..448f299ac --- /dev/null +++ b/providers/aki/provider.toml @@ -0,0 +1,5 @@ +name = "AKI.IO (EU)" +env = ["AKI_API_KEY"] +npm = "@ai-sdk/openai-compatible" +doc = "https://aki.io/docs/" +api = "https://aki.io/v1" From aa1dc7c5c43373d18c224fbc0ff97216e7a80166 Mon Sep 17 00:00:00 2001 From: Toine Date: Tue, 17 Mar 2026 12:14:28 +0100 Subject: [PATCH 2/2] corrected model names --- providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml | 2 +- providers/aki/models/Qwen/qwen3.5-35b.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml b/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml index 290ced0ed..8410e3669 100644 --- a/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml +++ b/providers/aki/models/MiniMaxAI/minimax-m2.5-230b.toml @@ -1,4 +1,4 @@ -name = "MiniMax-M2.5" +name = "minimax-m2.5-230b" family = "minimax" release_date = "2026-02-12" last_updated = "2026-02-12" diff --git a/providers/aki/models/Qwen/qwen3.5-35b.toml b/providers/aki/models/Qwen/qwen3.5-35b.toml index 25e22e409..f927cf044 100644 --- a/providers/aki/models/Qwen/qwen3.5-35b.toml +++ b/providers/aki/models/Qwen/qwen3.5-35b.toml @@ -1,4 +1,4 @@ -name = "Qwen3.5 35B A3B" +name = "qwen-3.5-35b" family = "qwen" release_date = "2026-02-16" last_updated = "2026-02-16"