This commit is contained in:
10
docs/snippets/elixir/plugins/embedding_backend.md
Normal file
10
docs/snippets/elixir/plugins/embedding_backend.md
Normal file
@@ -0,0 +1,10 @@
|
||||
<!-- snippet:skip reason="Elixir Rustler NIFs cannot host async Send + Sync + 'static Rust trait objects via callbacks; the BEAM actor-model boundary requires plugin work to live in the Rust core. The alef-generated Elixir trait_call macro additionally has a backslash/encoding bug (separate alef-codegen ticket). Custom plugins must be implemented in Rust." -->
|
||||
Embedding backend registration is not available in the Elixir binding. Custom embedding backends must be implemented in Rust using the `EmbeddingBackend` trait and registered in the Rust core before being used by Elixir.
|
||||
|
||||
To use custom embeddings in Elixir:
|
||||
|
||||
1. Implement the embedding backend in Rust (in `crates/kreuzberg/src/plugins/embedding.rs` or a separate Rust crate)
|
||||
2. Register the backend in the Rust core initialization
|
||||
3. Call the embeddings functions from Elixir with the appropriate config
|
||||
|
||||
See the Rust plugin documentation for implementing custom `EmbeddingBackend` plugins.
|
||||
Reference in New Issue
Block a user