(self, request: Request, text: Annotated[str, Form()])
| 37 | |
| 38 | @modal.fastapi_endpoint(method="POST", label=LABEL) |
| 39 | def embed(self, request: Request, text: Annotated[str, Form()]): |
| 40 | return run_embed(self.tokenizer, self.model, self.device, request, text) |
nothing calls this directly
no test coverage detected