Skip to content

Commit d290ad7

Browse files
Fix: Replace None with 0 in CompletionUsage Tokens Details
This commit addresses the issue outlined in openai#1837 by replacing `None` with `0` for various token fields in the `CompletionTokensDetails` and `PromptTokensDetails` classes. These fields are intended to represent counters, so initializing them with `0` simplifies the code and eliminates unnecessary optional checks. **Changes made:** - Replaced `None` with `0` for fields like `audio_tokens`, `reasoning_tokens`, and `cached_tokens` in both `CompletionTokensDetails` and `PromptTokensDetails` classes. - This update makes the token fields more consistent and eliminates the need for optional handling, as they will always default to `0` if not specified. **Why `Optional` was not removed:** - The `Optional` typing has been retained for some fields (like `audio_tokens` and `reasoning_tokens`) because, in some cases, the presence of these tokens may depend on certain conditions. By leaving them as `Optional`, we ensure flexibility in cases where the tokens might not be relevant or provided (e.g., for specific models or types of requests). This update improves usability by simplifying the tracking of token usage, avoiding unnecessary checks, and ensuring default values of `0` for all relevant counters.
1 parent 4dd5cf2 commit d290ad7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/openai/types/completion_usage.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ class CompletionTokensDetails(BaseModel):
1414
appeared in the completion.
1515
"""
1616

17-
audio_tokens: Optional[int] = None
17+
audio_tokens: Optional[int] = 0
1818
"""Audio input tokens generated by the model."""
1919

20-
reasoning_tokens: Optional[int] = None
20+
reasoning_tokens: Optional[int] = 0
2121
"""Tokens generated by the model for reasoning."""
2222

2323
rejected_prediction_tokens: Optional[int] = None
@@ -30,10 +30,10 @@ class CompletionTokensDetails(BaseModel):
3030

3131

3232
class PromptTokensDetails(BaseModel):
33-
audio_tokens: Optional[int] = None
33+
audio_tokens: Optional[int] = 0
3434
"""Audio input tokens present in the prompt."""
3535

36-
cached_tokens: Optional[int] = None
36+
cached_tokens: Optional[int] = 0
3737
"""Cached tokens present in the prompt."""
3838

3939

0 commit comments

Comments
 (0)