Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

InteractionTuningResponse

Response for interaction tuning analysis.

Properties

Name Type Description Notes
retriever_id str Retriever identifier
analysis_period ApiAnalyticsModelsTimeRange Analysis period
recommendations List[InteractionTuningRecommendation] Tuning recommendations
current_performance Dict[str, object] Current performance baseline

Example

from mixpeek.models.interaction_tuning_response import InteractionTuningResponse

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

# convert the object into a dict
interaction_tuning_response_dict = interaction_tuning_response_instance.to_dict()
# create an instance of InteractionTuningResponse from a dict
interaction_tuning_response_from_dict = InteractionTuningResponse.from_dict(interaction_tuning_response_dict)

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