maxOutputTokens property
Implementation
int get maxOutputTokens => switch (this) {
claude => 8192,
openai => 4096,
gemini => 8192,
// Conservative cap for local — phones thermal-throttle on long outputs.
local => 2048,
};
int get maxOutputTokens => switch (this) {
claude => 8192,
openai => 4096,
gemini => 8192,
// Conservative cap for local — phones thermal-throttle on long outputs.
local => 2048,
};