Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 778 Bytes

File metadata and controls

29 lines (20 loc) · 778 Bytes

Stop

The single sequence or list of sequences used to stop generation

Properties

Name Type Description Notes

Example

from cms_client.models.stop import Stop

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

# convert the object into a dict
stop_dict = stop_instance.to_dict()
# create an instance of Stop from a dict
stop_from_dict = Stop.from_dict(stop_dict)

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