Skip to content

Commit

Permalink
increase gpt-3.5-turbo maxContextLength to 16k
Browse files Browse the repository at this point in the history
  • Loading branch information
dafriz authored and Plexcalibur committed Jul 18, 2024
1 parent b452843 commit 04008eb
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 @@ -10,7 +10,7 @@ public enum ModelType {
// chat
GPT_4("gpt-4", EncodingType.CL100K_BASE, 8192),
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("gpt-3.5-turbo", EncodingType.CL100K_BASE, 16385),
GPT_3_5_TURBO_16K("gpt-3.5-turbo-16k", EncodingType.CL100K_BASE, 16385),

// text
Expand Down

0 comments on commit 04008eb

Please # to comment.