Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

ConfirmToolInputBody

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
approved bool Whether the user approves the pending tool call.

Example

from revengai.models.confirm_tool_input_body import ConfirmToolInputBody

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

# convert the object into a dict
confirm_tool_input_body_dict = confirm_tool_input_body_instance.to_dict()
# create an instance of ConfirmToolInputBody from a dict
confirm_tool_input_body_from_dict = ConfirmToolInputBody.from_dict(confirm_tool_input_body_dict)

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