Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

SseEventToolCallProgressData

Properties

Name Type Description Notes
data object
event_id int
source_run_id str [optional]
type str

Example

from revengai.models.sse_event_tool_call_progress_data import SseEventToolCallProgressData

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

# convert the object into a dict
sse_event_tool_call_progress_data_dict = sse_event_tool_call_progress_data_instance.to_dict()
# create an instance of SseEventToolCallProgressData from a dict
sse_event_tool_call_progress_data_from_dict = SseEventToolCallProgressData.from_dict(sse_event_tool_call_progress_data_dict)

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