(self, text)
| 453 | return text |
| 454 | |
| 455 | def batchQuery_postprocessing(self, text): |
| 456 | if self.need_redis: |
| 457 | if isinstance(text, list): |
| 458 | text = text |
| 459 | |
| 460 | return text |
| 461 | |
| 462 | def query_embedding_postprocessing(self, text, thresholds=.9): |
| 463 | if self.need_redis: |
nothing calls this directly
no outgoing calls
no test coverage detected