Package com.axemble.vdoc.sdk.ai.content
Interface IIngestor<T>
- Type Parameters:
T- the type of document to be ingested
public interface IIngestor<T>
Interface for ingesting documents into a vector store or similar system
-
Method Summary
Modifier and TypeMethodDescriptionIngest a single documentIngest multiple documentsIngest multiple documents
-
Method Details
-
ingest
Ingest a single document- Parameters:
document- the document to be ingested- Returns:
- the result of the ingestion
-
ingest
Ingest multiple documents- Parameters:
documents- the list of documents to be ingested- Returns:
- the result of the ingestion
-
ingest
Ingest multiple documents- Parameters:
documents- the array of documents to be ingested- Returns:
- the result of the ingestion
-