@zhafron/opencode-kiro-auth 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/constants.js +11 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,6 +60,16 @@ Add the plugin to your `opencode.json` or `opencode.jsonc`:
|
|
|
60
60
|
"medium": { "thinkingConfig": { "thinkingBudget": 16384 } },
|
|
61
61
|
"max": { "thinkingConfig": { "thinkingBudget": 32768 } }
|
|
62
62
|
}
|
|
63
|
+
},
|
|
64
|
+
"claude-sonnet-4-5-1m": {
|
|
65
|
+
"name": "Claude Sonnet 4.5 1M",
|
|
66
|
+
"limit": { "context": 1000000, "output": 64000 },
|
|
67
|
+
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] }
|
|
68
|
+
},
|
|
69
|
+
"qwen3-coder-480b": {
|
|
70
|
+
"name": "Qwen3 Coder 480B",
|
|
71
|
+
"limit": { "context": 200000, "output": 64000 },
|
|
72
|
+
"modalities": { "input": ["text"], "output": ["text"] }
|
|
63
73
|
}
|
|
64
74
|
}
|
|
65
75
|
}
|
package/dist/constants.js
CHANGED
|
@@ -31,14 +31,21 @@ export const KIRO_CONSTANTS = {
|
|
|
31
31
|
ORIGIN_AI_EDITOR: 'AI_EDITOR'
|
|
32
32
|
};
|
|
33
33
|
export const MODEL_MAPPING = {
|
|
34
|
-
'claude-haiku-4-5': '
|
|
34
|
+
'claude-haiku-4-5': 'CLAUDE_HAIKU_4_5_20251001_V1_0',
|
|
35
|
+
'claude-haiku-4-5-thinking': 'CLAUDE_HAIKU_4_5_20251001_V1_0',
|
|
35
36
|
'claude-sonnet-4-5': 'CLAUDE_SONNET_4_5_20250929_V1_0',
|
|
36
37
|
'claude-sonnet-4-5-thinking': 'CLAUDE_SONNET_4_5_20250929_V1_0',
|
|
37
|
-
'claude-sonnet-4-5-
|
|
38
|
+
'claude-sonnet-4-5-1m': 'CLAUDE_SONNET_4_5_20250929_LONG_V1_0',
|
|
39
|
+
'claude-sonnet-4-5-1m-thinking': 'CLAUDE_SONNET_4_5_20250929_LONG_V1_0',
|
|
38
40
|
'claude-opus-4-5': 'CLAUDE_OPUS_4_5_20251101_V1_0',
|
|
39
41
|
'claude-opus-4-5-thinking': 'CLAUDE_OPUS_4_5_20251101_V1_0',
|
|
40
|
-
'claude-sonnet-4
|
|
41
|
-
'claude-3-7-sonnet
|
|
42
|
+
'claude-sonnet-4': 'CLAUDE_SONNET_4_20250514_V1_0',
|
|
43
|
+
'claude-3-7-sonnet': 'CLAUDE_3_7_SONNET_20250219_V1_0',
|
|
44
|
+
'nova-swe': 'AGI_NOVA_SWE_V1_5',
|
|
45
|
+
'gpt-oss-120b': 'OPENAI_GPT_OSS_120B_1_0',
|
|
46
|
+
'qwen3-coder-480b': 'QWEN3_CODER_480B_A35B_1_0',
|
|
47
|
+
'minimax-m2': 'MINIMAX_MINIMAX_M2',
|
|
48
|
+
'kimi-k2-thinking': 'MOONSHOT_KIMI_K2_THINKING'
|
|
42
49
|
};
|
|
43
50
|
export const SUPPORTED_MODELS = Object.keys(MODEL_MAPPING);
|
|
44
51
|
export const KIRO_AUTH_SERVICE = {
|