(self, prompt_tokens: int, completion_tokens: int, total_tokens: int, reasoning_tokens: int = 0)
| 1688 | |
| 1689 | class ChatCompletionUsage: |
| 1690 | def __init__(self, prompt_tokens: int, completion_tokens: int, total_tokens: int, reasoning_tokens: int = 0): |
| 1691 | self.prompt_tokens = prompt_tokens |
| 1692 | self.completion_tokens = completion_tokens |
| 1693 | self.total_tokens = total_tokens |
| 1694 | self.reasoning_tokens = reasoning_tokens |
| 1695 | |
| 1696 | class ChatCompletion: |
| 1697 | def __init__(self, response_dict: Dict): |
nothing calls this directly
no outgoing calls
no test coverage detected