Set a raw option in the query. This option is encoded as part of the query parameters without any client-side verification. Use this for settings not directly exposed by the Python client. :param name: The name of the option :param value: The value o
(self, name, value)
| 957 | self.sort = sort |
| 958 | |
| 959 | def set_option(self, name, value): |
| 960 | """ |
| 961 | Set a raw option in the query. This option is encoded |
| 962 | as part of the query parameters without any client-side |
| 963 | verification. Use this for settings not directly exposed |
| 964 | by the Python client. |
| 965 | |
| 966 | :param name: The name of the option |
| 967 | :param value: The value of the option |
| 968 | """ |
| 969 | self._params[name] = value |
| 970 | |
| 971 | def encode_vector_search(self) -> Optional[List[Dict[str, Any]]]: |
| 972 | if self._vector_search is None: |
no outgoing calls
no test coverage detected