mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
14 lines
490 B
C#
14 lines
490 B
C#
using ShoppingAssistantApi.Application.Models.OpenAi;
|
|
|
|
namespace ShoppingAssistantApi.Application.IServices;
|
|
|
|
public interface IOpenAiService
|
|
{
|
|
Task<OpenAiMessage> GetChatCompletion(ChatCompletionRequest chat, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Retrieves a stream of tokens (pieces of words) based on provided chat.
|
|
/// </summary>
|
|
IAsyncEnumerable<string> GetChatCompletionStream(ChatCompletionRequest chat, CancellationToken cancellationToken);
|
|
}
|