Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 774 Bytes

File metadata and controls

29 lines (20 loc) · 774 Bytes

Prompt

The prompt text or list of prompts

Properties

Name Type Description Notes

Example

from cms_client.models.prompt import Prompt

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

# convert the object into a dict
prompt_dict = prompt_instance.to_dict()
# create an instance of Prompt from a dict
prompt_from_dict = Prompt.from_dict(prompt_dict)

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