refactor: trim provider helper exports

This commit is contained in:
Peter Steinberger
2026-05-01 20:13:55 +01:00
parent c6cb7b4801
commit b119cefae2
2 changed files with 4 additions and 4 deletions

View File

@@ -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",

View File

@@ -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;