You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromrevengai.models.sse_event_tool_call_start_dataimportSseEventToolCallStartData# TODO update the JSON string belowjson="{}"# create an instance of SseEventToolCallStartData from a JSON stringsse_event_tool_call_start_data_instance=SseEventToolCallStartData.from_json(json)
# print the JSON string representation of the objectprint(SseEventToolCallStartData.to_json())
# convert the object into a dictsse_event_tool_call_start_data_dict=sse_event_tool_call_start_data_instance.to_dict()
# create an instance of SseEventToolCallStartData from a dictsse_event_tool_call_start_data_from_dict=SseEventToolCallStartData.from_dict(sse_event_tool_call_start_data_dict)