mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 22:04:31 +00:00
* kilocode: dynamic model discovery, kilo/auto default, cooldown exemption - Replace 9-model hardcoded catalog with dynamic discovery from GET /api/gateway/models (Venice-like pattern with static fallback) - Default model changed from anthropic/claude-opus-4.6 to kilo/auto (smart routing model) - Add createKilocodeWrapper for X-KILOCODE-FEATURE header injection and reasoning.effort handling (skip for kilo/auto) - Add kilocode to cooldown-exempt providers (proxy like OpenRouter) - Keep sync buildKilocodeProvider for onboarding, add async buildKilocodeProviderWithDiscovery for implicit provider resolution - Per-token gateway pricing converted to per-1M-token for cost fields * kilocode: skip reasoning injection for x-ai models, harden discovery loop * fix(kilocode): keep valid discovered duplicates (openclaw#32352, thanks @pandemicsyn) * refactor(proxy): normalize reasoning payload guards (openclaw#32352, thanks @pandemicsyn) * chore(changelog): note kilocode hardening (openclaw#32352, thanks @pandemicsyn and @vincentkoc) * chore(changelog): fix kilocode note format (openclaw#32352, thanks @pandemicsyn and @vincentkoc) * test(kilocode): support auto-model override cases (openclaw#32352, thanks @pandemicsyn) * Update CHANGELOG.md --------- Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
export const KILOCODE_BASE_URL = "https://api.kilo.ai/api/gateway/";
|
|
export const KILOCODE_DEFAULT_MODEL_ID = "kilo/auto";
|
|
export const KILOCODE_DEFAULT_MODEL_REF = `kilocode/${KILOCODE_DEFAULT_MODEL_ID}`;
|
|
export const KILOCODE_DEFAULT_MODEL_NAME = "Kilo Auto";
|
|
export type KilocodeModelCatalogEntry = {
|
|
id: string;
|
|
name: string;
|
|
reasoning: boolean;
|
|
input: Array<"text" | "image">;
|
|
contextWindow?: number;
|
|
maxTokens?: number;
|
|
};
|
|
/**
|
|
* Static fallback catalog — used by the sync onboarding path and as a
|
|
* fallback when dynamic model discovery from the gateway API fails.
|
|
* The full model list is fetched dynamically by {@link discoverKilocodeModels}
|
|
* in `src/agents/kilocode-models.ts`.
|
|
*/
|
|
export const KILOCODE_MODEL_CATALOG: KilocodeModelCatalogEntry[] = [
|
|
{
|
|
id: KILOCODE_DEFAULT_MODEL_ID,
|
|
name: KILOCODE_DEFAULT_MODEL_NAME,
|
|
reasoning: true,
|
|
input: ["text", "image"],
|
|
contextWindow: 1000000,
|
|
maxTokens: 128000,
|
|
},
|
|
];
|
|
export const KILOCODE_DEFAULT_CONTEXT_WINDOW = 1000000;
|
|
export const KILOCODE_DEFAULT_MAX_TOKENS = 128000;
|
|
export const KILOCODE_DEFAULT_COST = {
|
|
input: 0,
|
|
output: 0,
|
|
cacheRead: 0,
|
|
cacheWrite: 0,
|
|
} as const;
|