(self, text: str)
| 29 | """Always returns FIXED_VECTOR, no model loaded.""" |
| 30 | |
| 31 | def embed(self, text: str) -> list[float]: |
| 32 | return FIXED_VECTOR |
| 33 | |
| 34 | |
| 35 | def _make_hit(ad_id: str, score: float, *, sensitive: bool = False, |
nothing calls this directly
no outgoing calls
no test coverage detected