Skip to content

Commit

Permalink
fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelsouza authored and zurawiki committed Mar 20, 2024
1 parent 9e6c82e commit d5d095b
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 d5d095b

Please sign in to comment.