7 lines
200 B
C#
7 lines
200 B
C#
namespace Api.Services.Contracts;
|
|
|
|
public interface IMatcherAiClient
|
|
{
|
|
Task<string> CreateChatCompletionAsync(string systemPrompt, string userPrompt, decimal temperature, CancellationToken ct);
|
|
}
|