change deepseek max token count to 128k
This commit is contained in:
parent
dfc99de7b8
commit
d3762ef285
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue