(self, text, thresholds=.9)
| 432 | return None |
| 433 | |
| 434 | def query_embedding_preprocessing(self, text, thresholds=.9): |
| 435 | if self.need_redis: |
| 436 | if isinstance(text, str): |
| 437 | text = text |
| 438 | |
| 439 | return text |
| 440 | |
| 441 | def batchQuery_embedding_preprocessing(self, text): |
| 442 | if self.need_redis: |
nothing calls this directly
no outgoing calls
no test coverage detected