Skip to content

Commit

Permalink
Merge pull request #102 from dafriz/add-gpt4o-mini
Browse files Browse the repository at this point in the history
add gpt-4o-mini model
  • Loading branch information
Plexcalibur authored Jul 19, 2024
2 parents 593b232 + 16b8ea3 commit 681ad70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/src/main/java/com/knuddels/jtokkit/api/ModelType.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public enum ModelType {
// chat
GPT_4("gpt-4", EncodingType.CL100K_BASE, 8192),
GPT_4O("gpt-4o", EncodingType.O200K_BASE, 128000),
GPT_4O_MINI("gpt-4o-mini", EncodingType.O200K_BASE, 128000),
GPT_4_32K("gpt-4-32k", EncodingType.CL100K_BASE, 32768),
GPT_4_TURBO("gpt-4-turbo", EncodingType.CL100K_BASE, 128000),
GPT_3_5_TURBO("gpt-3.5-turbo", EncodingType.CL100K_BASE, 16385),
Expand Down

0 comments on commit 681ad70

Please sign in to comment.