Skip to content

Commit

Permalink
Merge pull request #11 from pz9k/master
Browse files Browse the repository at this point in the history
support gpt-4o-mini
  • Loading branch information
icecoins authored Jul 22, 2024
2 parents 11c9a43 + dd3118a commit 7b28ea6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ android {
}
}
namespace 'com.chat'
compileSdk 33
compileSdk 34
defaultConfig {
applicationId "com.chat"
minSdk 27
targetSdk 33
versionCode 33
versionName "2.4.4"
versionName "2.4.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
splits {
Expand Down
4 changes: 3 additions & 1 deletion app/src/main/java/com/chat/Chat.java
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,9 @@ void initConfigs(View view){
new ArrayList<>(Arrays.asList(20, 50, 100, 200, 500, 1000, 2000)),
new ArrayList<>(Arrays.asList(0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6,
0.7, 0.8, 0.9, 1.0)),
new ArrayList<>(Arrays.asList("gpt-4o", "gpt-4-turbo", "gpt-4",
new ArrayList<>(Arrays.asList(
"gpt-4o-mini", "gpt-4o-mini-2024-07-18",
"gpt-4o", "gpt-4-turbo", "gpt-4",
"gpt-3.5-turbo", "gpt-3.5-turbo-16k",
"gpt-3.5-turbo-0613","gpt-3.5-turbo-16k-0613","gpt-3.5-turbo-0301",
"text-davinci-003", "text-davinci-002")),
Expand Down

0 comments on commit 7b28ea6

Please sign in to comment.