Response for interaction tuning analysis.
| 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 |
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)