Files
oh-my-opencode/packages/model-core/src/known-variants.ts
T
2026-05-21 12:49:50 +09:00

17 lines
330 B
TypeScript

/**
* Canonical set of recognised variant / effort tokens.
* Used by parseFallbackModelEntry (space-suffix detection) and
* flattenToFallbackModelStrings (inline-variant stripping).
*/
export const KNOWN_VARIANTS = new Set([
"low",
"medium",
"high",
"xhigh",
"max",
"minimal",
"none",
"auto",
"thinking",
])