Files
longhaul.cpp/tools/ui/src/lib/enums/reasoning-effort.enums.ts
2026-07-29 01:00:10 -05:00

13 lines
255 B
TypeScript

/**
* Reasoning effort levels for thinking models.
* These values are sent to the server and mapped to token budgets.
*/
export enum ReasoningEffort {
DEFAULT = 'default',
OFF = 'off',
LOW = 'low',
MEDIUM = 'medium',
HIGH = 'high',
MAX = 'max'
}