using RealCV.Application.Models; namespace RealCV.Application.Interfaces; public interface ICompanyNameMatcherService { /// /// Uses AI to semantically compare a company name from a CV against Companies House candidates. /// Returns the best match with confidence score and reasoning. /// Task FindBestMatchAsync( string cvCompanyName, List candidates, CancellationToken cancellationToken = default); }