DEFAULT_SIMILARITY_CONFIG: SimilarityConfig = ...

Default configuration for similarity calculation with balanced weights.

Weights are tuned to prioritize exact matches, then character similarity, then various fuzzy matching techniques for robust manga title matching.

export const DEFAULT_SIMILARITY_CONFIG: SimilarityConfig = {
exactMatchWeight: 0.25,
substringMatchWeight: 0.1,
wordOrderWeight: 0.08,
characterSimilarityWeight: 0.25,
semanticWeight: 0.1,
jaroWinklerWeight: 0.12,
ngramWeight: 0.1,
lengthDifferenceThreshold: 0.7,
debug: false,
};