feat: add Kiro provider

This commit is contained in:
Nacho F. Lizaur
2026-03-23 22:31:34 +01:00
parent 7d7711878d
commit 4e49abc10c
13 changed files with 241 additions and 1 deletions
+5 -1
View File
@@ -150,6 +150,7 @@ export const Provider = z
const isOpenAIcompatible = data.npm === "@ai-sdk/openai-compatible";
const isOpenrouter = data.npm === "@openrouter/ai-sdk-provider";
const isAnthropic = data.npm === "@ai-sdk/anthropic";
const isKiro = data.npm === "kiro";
const hasApi = data.api !== undefined;
return (
@@ -161,17 +162,20 @@ export const Provider = z
isAnthropic ||
// openai: api optional (always allowed)
isOpenAI ||
// kiro: api optional (always allowed)
isKiro ||
// all others: must NOT have api
(!isOpenAI &&
!isOpenAIcompatible &&
!isOpenrouter &&
!isAnthropic &&
!isKiro &&
!hasApi)
);
},
{
message:
"'api' is required for openai-compatible and openrouter, optional for anthropic and openai, forbidden otherwise",
"'api' is required for openai-compatible and openrouter, optional for anthropic, openai, and kiro, forbidden otherwise",
path: ["api"],
},
);
+21
View File
@@ -0,0 +1,21 @@
name = "Auto"
family = "claude-sonnet"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 1_000_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Haiku 4.5"
family = "claude-haiku"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 200_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Opus 4.5"
family = "claude-opus"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 200_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Opus 4.6"
family = "claude-opus"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 1_000_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Sonnet 4.5"
family = "claude-sonnet"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 200_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Sonnet 4.6"
family = "claude-sonnet"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 1_000_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Claude Sonnet 4"
family = "claude-sonnet"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = false
[cost]
input = 0
output = 0
[limit]
context = 200_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
+21
View File
@@ -0,0 +1,21 @@
name = "Deepseek v3.2"
family = "deepseek"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = true
[cost]
input = 0
output = 0
[limit]
context = 164_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
+21
View File
@@ -0,0 +1,21 @@
name = "MiniMax M2.1"
family = "minimax"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = true
[cost]
input = 0
output = 0
[limit]
context = 196_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
+21
View File
@@ -0,0 +1,21 @@
name = "MiniMax M2.5"
family = "minimax"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = false
reasoning = false
temperature = true
tool_call = true
open_weights = true
[cost]
input = 0
output = 0
[limit]
context = 196_000
output = 64_000
[modalities]
input = ["text"]
output = ["text"]
@@ -0,0 +1,21 @@
name = "Qwen3 Coder Next"
family = "qwen"
release_date = "2026-03-23"
last_updated = "2026-03-23"
attachment = true
reasoning = false
temperature = true
tool_call = true
open_weights = true
[cost]
input = 0
output = 0
[limit]
context = 256_000
output = 64_000
[modalities]
input = ["text", "image"]
output = ["text"]
+5
View File
@@ -0,0 +1,5 @@
name = "Kiro"
env = ["KIRO_ENABLED"]
npm = "kiro"
api = "https://q.us-east-1.amazonaws.com"
doc = "https://kiro.dev"