Load the model into memory. Must be called before embed().
()
| 34 | export interface Embedder { |
| 35 | /** Load the model into memory. Must be called before embed(). */ |
| 36 | init(): Promise<void>; |
| 37 | |
| 38 | /** |
| 39 | * Generate embeddings for one or more text inputs. |
no outgoing calls