10 lines
284 B
C#
10 lines
284 B
C#
using Api.Models.Rag;
|
|
|
|
namespace api.Services.Contracts.Rag;
|
|
|
|
public interface ICvRagService
|
|
{
|
|
Task<CvIngestResponse> IngestCvAsync(IFormFile file, bool gdprConsent, CancellationToken ct);
|
|
Task<JobMatchResponse> MatchJobAsync(JobMatchRequest request, CancellationToken ct);
|
|
}
|