aito.client.requests.query_api_request.RecommendRequest¶
-
class
aito.client.requests.query_api_request.RecommendRequest(query: Dict)¶ Bases:
aito.client.requests.query_api_request.QueryAPIRequestRequest to the Recommend API
- Parameters
query (Dict) – an Aito query if applicable, optional
Methods
make_request(method, endpoint, query)factory method to return the appropriate request class instance after checking the input endpoint and method :param method: the method of the request :type method: str :param endpoint: the endpoint of the request :type endpoint: str :param query: an Aito query if applicable, optional :type query: Optional[Union[Dict, List]] :return: the appropriate request class intsnace :rtype: AitoRequest
Attributes
methodthe Query API path
-
classmethod
make_request(method: str, endpoint: str, query: Optional[Union[Dict, List]]) → aito.client.requests.aito_request.AitoRequest¶ factory method to return the appropriate request class instance after checking the input endpoint and method :param method: the method of the request :type method: str :param endpoint: the endpoint of the request :type endpoint: str :param query: an Aito query if applicable, optional :type query: Optional[Union[Dict, List]] :return: the appropriate request class intsnace :rtype: AitoRequest
-
path: str = '_recommend'¶ the Query API path
-
response_cls¶ alias of
aito.client.responses.query_api_response.RecommendResponse