Skip to content

Commit

Permalink
v2.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dooy committed Aug 26, 2024
1 parent 9c2baa0 commit 5a72588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions changlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# 计划
# 2.20.5
- 😄 新增: flux 相关模型的dall.e格式
- 🐞 修复:claude-3-5,maxtoken问题 #495

# 2.20.4
- 🐞 修复:更新了背景图版本后。聊天窗口内容上下滚动有时候会失效,要重新刷新页面才能滚动 #490
Expand Down
2 changes: 2 additions & 0 deletions src/views/mj/aiModel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ watch(()=>nGptStore.value.model,(n)=>{
max=16384 *2;
}else if( n.indexOf('gpt-4')>-1 || n.indexOf('16k')>-1 ){ //['16k','8k','32k','gpt-4'].indexOf(n)>-1
max=4096*2;
}else if( n.toLowerCase().includes('claude-3-5') ){
max=4096*2*2;
}else if( n.toLowerCase().includes('claude-3') ){
max=4096*2;
}
Expand Down

0 comments on commit 5a72588

Please sign in to comment.