mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:50:43 +00:00
refactor: trim provider helper exports
This commit is contained in:
@@ -7,10 +7,10 @@ const GROQ_GPT_OSS_REASONING_IDS = new Set([
|
||||
"openai/gpt-oss-safeguard-20b",
|
||||
]);
|
||||
|
||||
export const GROQ_QWEN_REASONING_EFFORTS = ["none", "default"] as const;
|
||||
export const GROQ_GPT_OSS_REASONING_EFFORTS = ["low", "medium", "high"] as const;
|
||||
const GROQ_QWEN_REASONING_EFFORTS = ["none", "default"] as const;
|
||||
const GROQ_GPT_OSS_REASONING_EFFORTS = ["low", "medium", "high"] as const;
|
||||
|
||||
export const GROQ_QWEN_REASONING_EFFORT_MAP: Record<string, string> = {
|
||||
const GROQ_QWEN_REASONING_EFFORT_MAP: Record<string, string> = {
|
||||
off: "none",
|
||||
none: "none",
|
||||
minimal: "default",
|
||||
|
||||
@@ -13,7 +13,7 @@ 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 = {
|
||||
type KilocodeModelCatalogEntry = {
|
||||
id: string;
|
||||
name: string;
|
||||
reasoning: boolean;
|
||||
|
||||
Reference in New Issue
Block a user