Skip to content

Commit

Permalink
[Bugfix] Steaming continuous_usage_stats default to False (vllm-proje…
Browse files Browse the repository at this point in the history
…ct#9709)

Signed-off-by: Sam Stoelinga <[email protected]>
  • Loading branch information
samos123 authored Oct 26, 2024
1 parent 6567e13 commit 067e77f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/entrypoints/openai/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class ResponseFormat(OpenAIBaseModel):

class StreamOptions(OpenAIBaseModel):
include_usage: Optional[bool] = True
continuous_usage_stats: Optional[bool] = True
continuous_usage_stats: Optional[bool] = False


class FunctionDefinition(OpenAIBaseModel):
Expand Down

0 comments on commit 067e77f

Please sign in to comment.