Добавил слой Application
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace UniVerse.Application.Interfaces;
|
||||
|
||||
public record LlmReviewAnalysis(
|
||||
double QualityScore,
|
||||
string Sentiment,
|
||||
string[] Tags,
|
||||
bool IsInformative
|
||||
);
|
||||
|
||||
public interface ILlmClient
|
||||
{
|
||||
Task<LlmReviewAnalysis> AnalyzeReviewAsync(string reviewText, string lectureContext);
|
||||
}
|
||||
Reference in New Issue
Block a user