Skip to content

Commit

Permalink
fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelsouza committed Feb 5, 2024
1 parent 0a93e6b commit d44d2ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiktoken-rs/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub fn get_context_size(model: &str) -> usize {
if starts_with_any!(model, "gpt-4") {
return 8192;
}
if starts_with_any!(model, "gpt-3.5-turbo-0125"){
if starts_with_any!(model, "gpt-3.5-turbo-0125") {
return 16_385;
}
if starts_with_any!(model, "gpt-3.5-turbo-1106") {
Expand Down

0 comments on commit d44d2ab

Please sign in to comment.