mirror of
https://github.com/lemon07r/opencode-kimi-full.git
synced 2026-06-02 06:14:16 +02:00
Release v1.1.1: reorder reasoning variants (off, auto, low, medium, high)
off first (the most conservative, fastest option), then auto (server-picked default), then the escalating levels. Matches the post-login config block printed by the authorize callback and the user's live config.
This commit is contained in:
@@ -51,8 +51,8 @@ Add the plugin and a provider entry to `opencode.json` (or `~/.config/opencode/o
|
||||
"reasoning": true,
|
||||
"options": {},
|
||||
"variants": {
|
||||
"auto": { "reasoning_effort": "auto" },
|
||||
"off": { "reasoning_effort": "off" },
|
||||
"auto": { "reasoning_effort": "auto" },
|
||||
"low": { "reasoning_effort": "low" },
|
||||
"medium": { "reasoning_effort": "medium" },
|
||||
"high": { "reasoning_effort": "high" }
|
||||
@@ -83,7 +83,7 @@ The plugin returns a verification URL and user code. After browser approval it p
|
||||
|
||||
Select `kimi-for-coding-oauth/kimi-for-coding` in opencode.
|
||||
|
||||
Press **Ctrl+T** to pick a reasoning variant (`auto`, `off`, `low`, `medium`, `high`). `auto` lets Moonshot pick dynamically; `off` disables thinking; `low`/`medium`/`high` pin the effort level.
|
||||
Press **Ctrl+T** to pick a reasoning variant (`off`, `auto`, `low`, `medium`, `high`). `off` disables thinking; `auto` lets Moonshot pick dynamically; `low`/`medium`/`high` pin the effort level.
|
||||
|
||||
---
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "opencode-kimi-full",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"description": "OpenCode plugin that adds first-class support for Kimi K2.6 (kimi-for-coding) via the official Kimi OAuth device flow, matching the upstream kimi-cli 1:1.",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
||||
+1
-1
@@ -48,8 +48,8 @@ function buildConfigBlock(info: { model_id: string; context_length?: number; dis
|
||||
...(ctx > 0 ? { limit: { context: ctx } } : {}),
|
||||
options: {
|
||||
variants: {
|
||||
auto: {},
|
||||
off: { reasoning_effort: "off" },
|
||||
auto: {},
|
||||
low: { reasoning_effort: "low" },
|
||||
medium: { reasoning_effort: "medium" },
|
||||
high: { reasoning_effort: "high" },
|
||||
|
||||
Reference in New Issue
Block a user