Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.26 KB

File metadata and controls

38 lines (29 loc) · 1.26 KB

AgentSkill

Properties

Name Type Description Notes
key str
access AiConfigsAccess [optional]
links ParentAndSelfLinks [optional]
maintainer AIConfigMaintainer [optional]
name str
description str [optional]
markdown str The verbatim SKILL.md content of the agent skill
tags List[str]
version int
created_at int

Example

from launchdarkly_api.models.agent_skill import AgentSkill

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

# convert the object into a dict
agent_skill_dict = agent_skill_instance.to_dict()
# create an instance of AgentSkill from a dict
agent_skill_from_dict = AgentSkill.from_dict(agent_skill_dict)

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