TdAI / llama.cpp /tools /ui /src /lib /enums /reasoning-effort.enums.ts
tda45's picture
Upload folder using huggingface_hub (part 8)
15c3607 verified
Raw
History Blame Contribute Delete
219 Bytes
/**
* Reasoning effort levels for thinking models.
* These values are sent to the server and mapped to token budgets.
*/
export enum ReasoningEffort {
LOW = 'low',
MEDIUM = 'medium',
HIGH = 'high',
MAX = 'max'
}