Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 921 Bytes

File metadata and controls

29 lines (20 loc) · 921 Bytes

ModelsResponse

Properties

Name Type Description Notes
models List[str] List of active models available analysis.

Example

from revengai.models.models_response import ModelsResponse

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

# convert the object into a dict
models_response_dict = models_response_instance.to_dict()
# create an instance of ModelsResponse from a dict
models_response_from_dict = ModelsResponse.from_dict(models_response_dict)

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