change deepseek max token count to 128k

This commit is contained in:
shenjack 2025-08-25 19:57:02 +08:00
parent dfc99de7b8
commit d3762ef285

View file

@ -96,7 +96,7 @@ impl Model {
pub fn max_token_count(&self) -> u64 {
match self {
Self::Chat | Self::Reasoner => 64_000,
Self::Chat | Self::Reasoner => 128_000,
Self::Custom { max_tokens, .. } => *max_tokens,
}
}