Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

AIToolPatch

Properties

Name Type Description Notes
maintainer_id str [optional]
maintainer_team_key str [optional]
description str [optional]
var_schema object JSON Schema defining the tool's parameters for LLM consumption [optional]
custom_parameters object Custom metadata and configuration for application-level use (not sent to LLM) [optional]

Example

from launchdarkly_api.models.ai_tool_patch import AIToolPatch

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

# convert the object into a dict
ai_tool_patch_dict = ai_tool_patch_instance.to_dict()
# create an instance of AIToolPatch from a dict
ai_tool_patch_from_dict = AIToolPatch.from_dict(ai_tool_patch_dict)

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