import type { BoostingScoreComputationStrategy } from './boosting-score-computation-strategy.js'; /** * Representation of the 'BoostingScoringConfiguration' schema. */ export type BoostingScoringConfiguration = { /** * Enable metadata-based boosting. * Default: true. */ enabled?: boolean | null; /** * Default: []. */ metadata?: ({ /** * Max Length: 1024. */ key: string; value: string[]; /** * Default: "document". */ scope?: 'repository' | 'document' | 'chunk'; weight: number; } & Record)[] | null; /** * Contribution to final score. * Default: 1. */ weight?: number | null; scoreComputationStrategy?: BoostingScoreComputationStrategy; } & Record; //# sourceMappingURL=boosting-scoring-configuration.d.ts.map