Skip to content

Commit

Permalink
*增加Claude 3.5 sonnet模型
Browse files Browse the repository at this point in the history
*修复Claude 3. sonnet模型
  • Loading branch information
flyun committed Jun 22, 2024
1 parent 42adad6 commit 8b5f505
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,8 @@ public void initClaude() {
true));
aiModelList.put(903, new AiModelBean("Claude 3 sonnet", "claude-3-sonnet-20240229",
true));
aiModelList.put(904, new AiModelBean("Claude 3.5 sonnet", "claude-3-5-sonnet-20240620",
true));

}

Expand Down Expand Up @@ -740,6 +742,8 @@ public boolean isJudgeByModelClaude(int aiModel) {

if (aiModel == 901) return true;
if (aiModel == 902) return true;
if (aiModel == 903) return true;
if (aiModel == 904) return true;

return false;
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
#Sat Mar 12 05:53:50 MSK 2016
APP_VERSION_CODE=7
APP_VERSION_NAME=1.0.7
APP_VERSION_CODE=8
APP_VERSION_NAME=1.0.8
APP_PACKAGE=info.flyun.chatair
RELEASE_KEY_PASSWORD=android
RELEASE_KEY_ALIAS=androidkey
Expand Down

0 comments on commit 8b5f505

Please sign in to comment.