Rename project to RealCV with new logo and font updates
- Rename all TrueCV references to RealCV across the codebase - Add new transparent RealCV logo - Switch from JetBrains Mono to Inter font for better number clarity - Update solution, project files, and namespaces 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
33
src/RealCV.Application/Models/SemanticMatchResult.cs
Normal file
33
src/RealCV.Application/Models/SemanticMatchResult.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
namespace RealCV.Application.Models;
|
||||
|
||||
public record SemanticMatchResult
|
||||
{
|
||||
public required string CandidateCompanyName { get; init; }
|
||||
public required string CandidateCompanyNumber { get; init; }
|
||||
public required int ConfidenceScore { get; init; }
|
||||
public required string MatchType { get; init; } // Exact, TradingName, Subsidiary, Parent, NoMatch
|
||||
public required string Reasoning { get; init; }
|
||||
public bool IsMatch => ConfidenceScore >= 70;
|
||||
}
|
||||
|
||||
public record CompanyMatchRequest
|
||||
{
|
||||
public required string CVCompanyName { get; init; }
|
||||
public required List<CompanyCandidate> Candidates { get; init; }
|
||||
}
|
||||
|
||||
public record CompanyCandidate
|
||||
{
|
||||
public required string CompanyName { get; init; }
|
||||
public required string CompanyNumber { get; init; }
|
||||
public string? CompanyStatus { get; init; }
|
||||
public string? DateOfCreation { get; init; }
|
||||
}
|
||||
|
||||
public record AIMatchResponse
|
||||
{
|
||||
public required string BestMatchCompanyNumber { get; init; }
|
||||
public required int ConfidenceScore { get; init; }
|
||||
public required string MatchType { get; init; }
|
||||
public required string Reasoning { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user