import { AbstractAiSettings } from "./AbstractAiSettings.js"; import { AiSettingsCompareDifferences } from "../AiSettingsCompareDifferences.js"; /** * Configuration for the embedded ONNX model. * This uses a server-wide, singleton ONNX service and cannot be configured intentionally. */ export declare class EmbeddedSettings extends AbstractAiSettings { /** * Validates the settings fields. Embedded settings have no fields to validate. * @param errors Array to collect validation error messages (will not be modified) */ validate(errors: string[]): void; /** * Compares this settings instance with another to detect differences. * @param other The other settings instance to compare with * @returns None if both are EmbeddedSettings, All otherwise */ compare(other: AbstractAiSettings): AiSettingsCompareDifferences; } //# sourceMappingURL=EmbeddedSettings.d.ts.map