Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

File metadata and controls

34 lines (25 loc) · 1.23 KB

AgentOptimizationResultPost

Properties

Name Type Description Notes
run_id UUID
agent_optimization_version int
iteration int
instructions str
user_input str
parameters Dict[str, object] [optional]

Example

from launchdarkly_api.models.agent_optimization_result_post import AgentOptimizationResultPost

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

# convert the object into a dict
agent_optimization_result_post_dict = agent_optimization_result_post_instance.to_dict()
# create an instance of AgentOptimizationResultPost from a dict
agent_optimization_result_post_from_dict = AgentOptimizationResultPost.from_dict(agent_optimization_result_post_dict)

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