| 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] |
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]