Skip to content

Commit

Permalink
correct context size of gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
Plexcalibur authored Jul 18, 2024
1 parent 3099c9e commit 35c71ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/main/java/com/knuddels/jtokkit/api/ModelType.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public enum ModelType {
// chat
GPT_4("gpt-4", EncodingType.CL100K_BASE, 8192),
GPT_4O("gpt-4o", EncodingType.O200K_BASE, 131072),
GPT_4O("gpt-4o", EncodingType.O200K_BASE, 128000),
GPT_4_32K("gpt-4-32k", EncodingType.CL100K_BASE, 32768),
GPT_3_5_TURBO("gpt-3.5-turbo", EncodingType.CL100K_BASE, 4096),
GPT_3_5_TURBO_16K("gpt-3.5-turbo-16k", EncodingType.CL100K_BASE, 16385),
Expand Down

0 comments on commit 35c71ab

Please sign in to comment.