Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

FunctionCapabilityResponse

Properties

NameTypeDescriptionNotes
capabilitiesList[str]The capabilities of the function

Example

fromrevengai.models.function_capability_responseimportFunctionCapabilityResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionCapabilityResponse from a JSON stringfunction_capability_response_instance=FunctionCapabilityResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionCapabilityResponse.to_json())
# convert the object into a dictfunction_capability_response_dict=function_capability_response_instance.to_dict()
# create an instance of FunctionCapabilityResponse from a dictfunction_capability_response_from_dict=FunctionCapabilityResponse.from_dict(function_capability_response_dict)

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