Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 926 Bytes

APITokenCost.md

File metadata and controls

31 lines (22 loc) · 926 Bytes

APITokenCost

Properties

Name Type Description Notes
var_date date
completion_tokens int
prompt_tokens int

Example

from iblai.models.api_token_cost import APITokenCost

# TODO update the JSON string below
json = "{}"
# create an instance of APITokenCost from a JSON string
api_token_cost_instance = APITokenCost.from_json(json)
# print the JSON string representation of the object
print(APITokenCost.to_json())

# convert the object into a dict
api_token_cost_dict = api_token_cost_instance.to_dict()
# create an instance of APITokenCost from a dict
api_token_cost_from_dict = APITokenCost.from_dict(api_token_cost_dict)

[Back to Model list] [Back to API list] [Back to README]