snowflake.core.cortex.search_service.QueryRequest¶
- class snowflake.core.cortex.search_service.QueryRequest(*, query: Annotated[str, Strict(strict=True)], columns: List[Annotated[str, Strict(strict=True)]], filter: Dict[str, Any] | None = None, limit: Annotated[int, Strict(strict=True)] | None = 10, experimental: Dict[str, Any] | None = None)¶
Bases:
BaseModel
A model object representing the QueryRequest resource.
Constructs an object of type QueryRequest with the provided properties.
- Parameters:
query (str) – Unstructured text query.
columns (List[str]) – List of columns to return.
filter (object, optional) – Filter query.
limit (int, default 10) – Max number of results to return.
experimental (object, optional) – Opaque container for experimental features. You probably do not want to use this.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Methods
- classmethod from_dict(obj: dict) QueryRequest ¶
Create an instance of QueryRequest from a dict.
- classmethod from_json(json_str: str) QueryRequest ¶
Create an instance of QueryRequest from a JSON string.
- to_dict(hide_readonly_properties: bool = False) Dict[str, Any] ¶
Returns the dictionary representation of the model using alias.
- to_dict_without_readonly_properties() Dict[str, Any] ¶
Return the dictionary representation of the model without readonly properties.
- to_json() str ¶
Returns the JSON representation of the model using alias.
- to_str() str ¶
Returns the string representation of the model using alias.