agent-afk 5.105.0 → 5.106.1
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 +1 -1
- package/dist/agent/session/model-slots.d.ts +1 -1
- package/dist/cli.mjs +39 -39
- package/dist/index.mjs +4 -4
- package/dist/telegram.mjs +115 -115
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -144,7 +144,7 @@ afk chat "refactor this" --model gpt-5.5
|
|
|
144
144
|
|---|---|---|
|
|
145
145
|
| `local` | *(empty — you configure)* | Point at Ollama, LM Studio, or any OpenAI-compatible shim via `AFK_MODEL_LOCAL` + `AFK_MODEL_LOCAL_BASE_URL` |
|
|
146
146
|
| `small` | `claude-haiku-4-5-20251001` | Cheapest/fastest Anthropic tier |
|
|
147
|
-
| `medium` | `claude-sonnet-
|
|
147
|
+
| `medium` | `claude-sonnet-4-6` | General-use default |
|
|
148
148
|
| `large` | `claude-opus-5` | Most capable |
|
|
149
149
|
|
|
150
150
|
The `haiku`/`sonnet`/`opus`/`fable` handles are **fixed identities**, not tier
|
|
@@ -10,7 +10,7 @@ export interface ModelSlotBinding {
|
|
|
10
10
|
}
|
|
11
11
|
export type ModelSlots = Record<SlotName, ModelSlotBinding>;
|
|
12
12
|
export declare const CLAUDE_HAIKU_ID = "claude-haiku-4-5-20251001";
|
|
13
|
-
export declare const CLAUDE_SONNET_ID = "claude-sonnet-
|
|
13
|
+
export declare const CLAUDE_SONNET_ID = "claude-sonnet-4-6";
|
|
14
14
|
export declare const CLAUDE_OPUS_ID = "claude-opus-5";
|
|
15
15
|
export declare const CLAUDE_FABLE_5_ID = "claude-fable-5";
|
|
16
16
|
export declare const DEFAULT_SLOT_BINDINGS: ModelSlots;
|