Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

CreateConversationRequest

Properties

NameTypeDescriptionNotes
contextConversationContext[optional]
titlestr[optional]

Example

fromrevengai.models.create_conversation_requestimportCreateConversationRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateConversationRequest from a JSON stringcreate_conversation_request_instance=CreateConversationRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateConversationRequest.to_json())
# convert the object into a dictcreate_conversation_request_dict=create_conversation_request_instance.to_dict()
# create an instance of CreateConversationRequest from a dictcreate_conversation_request_from_dict=CreateConversationRequest.from_dict(create_conversation_request_dict)

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