Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.43 KB

File metadata and controls

38 lines (29 loc) · 1.43 KB

AIConfigPost

Properties

Name Type Description Notes
description str [optional] [default to '']
key str
maintainer_id str [optional]
maintainer_team_key str [optional]
mode str [optional] [default to 'completion']
name str
tags List[str] [optional]
default_variation AIConfigVariationPost [optional]
evaluation_metric_key str Evaluation metric key for this AI Config [optional]
is_inverted bool Whether the evaluation metric is inverted, meaning a lower value is better if set as true [optional]

Example

from launchdarkly_api.models.ai_config_post import AIConfigPost

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

# convert the object into a dict
ai_config_post_dict = ai_config_post_instance.to_dict()
# create an instance of AIConfigPost from a dict
ai_config_post_from_dict = AIConfigPost.from_dict(ai_config_post_dict)

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