working spend tracking + logging for response api

This commit is contained in:
Ishaan Jaff 2025-03-12 17:29:25 -07:00
parent 98718f6f09
commit d4ed384984

View file

@ -742,6 +742,9 @@ class BaseLiteLLMOpenAIResponseObject(BaseModel):
def __contains__(self, key):
return key in self.__dict__
def items(self):
return self.__dict__.items()
class OutputTokensDetails(BaseLiteLLMOpenAIResponseObject):
reasoning_tokens: int