8 lines
236 B
C#
8 lines
236 B
C#
using OpenAI.Chat;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.AiChat;
|
|
|
|
public interface IChatService
|
|
{
|
|
public IAsyncEnumerable<string> CompleteChatAsync(string modelId, List<ChatMessage> messages,CancellationToken cancellationToken);
|
|
} |