Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
guoqingbao committed Jul 30, 2024
1 parent 2a4d3f9 commit f8ca1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/openai/pipelines/llm_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ impl LLMEngine {
};

println!(
"\r\n [{} requets] Prefilling: {} prompt tokens processed in {} seconds",
"\r\n [{} requests] Prefilling: {} prompt tokens processed in {} seconds",
result.len(),
overall_usage.prompt_tokens,
overall_usage.prompt_time_costs / 1000
);

println!(
"\r\n [{} requets] Decoding: {} tokens processed in {} seconds ({} tokens/s)",
"\r\n [{} requests] Decoding: {} tokens processed in {} seconds ({} tokens/s)",
result.len(),
overall_usage.completion_tokens,
overall_usage.completion_time_costs / 1000,
Expand Down

0 comments on commit f8ca1fa

Please sign in to comment.