Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.5 KB

File metadata and controls

39 lines (30 loc) · 1.5 KB

GetAIModel200Response

Properties

Name Type Description Notes
id str [optional]
name str [optional]
provider str [optional]
description str [optional]
context_window int [optional]
max_output_tokens int [optional]
capabilities GetAIModel200ResponseCapabilities [optional]
pricing GetAIModel200ResponsePricing [optional]
release_date date [optional]
deprecated bool [optional]
available bool [optional]

Example

from quantcdn.models.get_ai_model200_response import GetAIModel200Response

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

# convert the object into a dict
get_ai_model200_response_dict = get_ai_model200_response_instance.to_dict()
# create an instance of GetAIModel200Response from a dict
get_ai_model200_response_from_dict = GetAIModel200Response.from_dict(get_ai_model200_response_dict)

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