(self, inputs, **kwargs)
| 65 | self.prefix = prefix |
| 66 | |
| 67 | def __call__(self, inputs, **kwargs): |
| 68 | return [{f"{self.prefix}_text": "Lorem ipsum"} for _ in inputs] |
| 69 | |
| 70 | |
| 71 | class DummyTextClassificationPipeline: |
nothing calls this directly
no outgoing calls
no test coverage detected