Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

AIToolPost

Properties

Name Type Description Notes
key str
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
custom_parameters object Custom metadata and configuration for application-level use (not sent to LLM) [optional]

Example

from launchdarkly_api.models.ai_tool_post import AIToolPost

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

# convert the object into a dict
ai_tool_post_dict = ai_tool_post_instance.to_dict()
# create an instance of AIToolPost from a dict
ai_tool_post_from_dict = AIToolPost.from_dict(ai_tool_post_dict)

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