Token usage information
| Name | Type | Description | Notes |
|---|---|---|---|
| input_tokens | int | Number of input tokens | [optional] |
| output_tokens | int | Number of output tokens | [optional] |
| total_tokens | int | Total tokens consumed | [optional] |
from quantcdn.models.chat_inference200_response_usage import ChatInference200ResponseUsage
# TODO update the JSON string below
json = "{}"
# create an instance of ChatInference200ResponseUsage from a JSON string
chat_inference200_response_usage_instance = ChatInference200ResponseUsage.from_json(json)
# print the JSON string representation of the object
print(ChatInference200ResponseUsage.to_json())
# convert the object into a dict
chat_inference200_response_usage_dict = chat_inference200_response_usage_instance.to_dict()
# create an instance of ChatInference200ResponseUsage from a dict
chat_inference200_response_usage_from_dict = ChatInference200ResponseUsage.from_dict(chat_inference200_response_usage_dict)