(self, text, thresholds=.9)
| 460 | return text |
| 461 | |
| 462 | def query_embedding_postprocessing(self, text, thresholds=.9): |
| 463 | if self.need_redis: |
| 464 | if isinstance(text, str): |
| 465 | text = text |
| 466 | |
| 467 | return text |
| 468 | |
| 469 | def batchQuery_embedding_postprocessing(self, text): |
| 470 | if self.need_redis: |
nothing calls this directly
no outgoing calls
no test coverage detected