Call operator interface, delegates to call method
(self, input: BatchEmbedderInputType, model_kwargs: Optional[Dict] = {}, force_recreate: bool = False)
| 825 | return embeddings |
| 826 | |
| 827 | def __call__(self, input: BatchEmbedderInputType, model_kwargs: Optional[Dict] = {}, force_recreate: bool = False) -> BatchEmbedderOutputType: |
| 828 | """ |
| 829 | Call operator interface, delegates to call method |
| 830 | """ |
| 831 | return self.call(input=input, model_kwargs=model_kwargs, force_recreate=force_recreate) |
| 832 | |
| 833 | |
| 834 | class DashScopeToEmbeddings(DataComponent): |