Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

increase gpt-3.5-turbo maxContextLength to 16k #92

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading