Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

RunEvaluationResponse

Response from running an evaluation

Properties

Name Type Description Notes
gateway_name str The LLM gateway name that will be used for evaluation [optional]
message str Status message [optional]
success bool Whether the evaluation run was initiated successfully [optional]

Example

from instana_client.models.run_evaluation_response import RunEvaluationResponse

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

# convert the object into a dict
run_evaluation_response_dict = run_evaluation_response_instance.to_dict()
# create an instance of RunEvaluationResponse from a dict
run_evaluation_response_from_dict = RunEvaluationResponse.from_dict(run_evaluation_response_dict)

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