(self, text: str)
| 446 | return text |
| 447 | |
| 448 | def query_postprocessing(self, text: str): |
| 449 | if self.need_redis: |
| 450 | if isinstance(text, str): |
| 451 | text = text |
| 452 | # TODO 加入redis |
| 453 | return text |
| 454 | |
| 455 | def batchQuery_postprocessing(self, text): |
| 456 | if self.need_redis: |
nothing calls this directly
no outgoing calls
no test coverage detected