import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { EmbeddingsGenerationConfiguration } from "./EmbeddingsGenerationConfiguration.js"; import { AddEmbeddingsGenerationOperationResult } from "./AddEmbeddingsGenerationOperationResult.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; /** * Operation to add a new Embeddings Generation ETL task to the database. * Embeddings Generation ETL monitors a collection and automatically generates vector embeddings * for specified document fields. */ export declare class AddEmbeddingsGenerationOperation implements IMaintenanceOperation { private readonly _configuration; /** * Creates a new AddEmbeddingsGenerationOperation. * @param configuration The Embeddings Generation ETL configuration */ constructor(configuration: EmbeddingsGenerationConfiguration); get resultType(): OperationResultType; getCommand(conventions: DocumentConventions): RavenCommand; } //# sourceMappingURL=AddEmbeddingsGenerationOperation.d.ts.map