Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

SseEventToolCallStartData

Properties

Name Type Description Notes
data object
event_id int
type str

Example

from revengai.models.sse_event_tool_call_start_data import SseEventToolCallStartData

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

# convert the object into a dict
sse_event_tool_call_start_data_dict = sse_event_tool_call_start_data_instance.to_dict()
# create an instance of SseEventToolCallStartData from a dict
sse_event_tool_call_start_data_from_dict = SseEventToolCallStartData.from_dict(sse_event_tool_call_start_data_dict)

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