Changes
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Api.Models.Requests
|
||||
{
|
||||
public sealed class FindJobsRequest
|
||||
{
|
||||
public required string CvDocumentId { get; init; }
|
||||
public int? TopK { get; init; }
|
||||
public string? Email { get; init; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Api.Models.Requests
|
||||
{
|
||||
public sealed class MatchJobRequest
|
||||
{
|
||||
public string? CvDocumentId { get; set; }
|
||||
public string? JobUrl { get; set; }
|
||||
public string? JobDescription { get; set; }
|
||||
public bool GdprConsent { get; set; }
|
||||
public string? Email { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Api.Models.Requests
|
||||
{
|
||||
public sealed class RagSearchRequest
|
||||
{
|
||||
public required string QueryText { get; init; }
|
||||
public IReadOnlyList<string>? TargetDocumentTypes { get; init; }
|
||||
public int? TopK { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user