Interface IContentTextExtractionPlugin
- Namespace
- FoundationaLLM.Common.Interfaces.Plugins
- Assembly
- FoundationaLLM.Common.dll
Defines the interface for a content text extraction plugin.
public interface IContentTextExtractionPlugin
- Extension Methods
Methods
ExtractText(BinaryData)
Extracts text from the provided raw content.
Task<PluginResult<string>> ExtractText(BinaryData rawContent)
Parameters
rawContent
BinaryDataThe binary content to extract text from.
Returns
- Task<PluginResult<string>>
A PluginResult<T> object with the extracted text.