Files
fil/docs/snippets/elixir/plugins/extractor_registration.md
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

846 B

Document extractor registration is not available in the Elixir binding. Custom extractors must be implemented in Rust using the DocumentExtractor trait and registered in the Rust core.

To use custom extractors in Elixir:

  1. Implement the extractor in Rust using the DocumentExtractor trait
  2. Register the extractor in the Rust core's registry
  3. Call the extraction functions from Elixir

See the Rust plugin documentation for implementing custom DocumentExtractor plugins.