9 lines
223 B
C#
9 lines
223 B
C#
using Rag.Models;
|
|
|
|
namespace Api.Services.Contracts;
|
|
|
|
public interface IDocumentClassifier
|
|
{
|
|
Task<DocumentClassification> ClassifyAsync(string text, string? providedType, string? providedTitle, CancellationToken ct);
|
|
}
|