mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 08:26:37 +08:00
10 lines
321 B
C#
10 lines
321 B
C#
using OpenAI.Chat;
|
|
using Yi.Framework.AiHub.Domain.Shared.Dtos;
|
|
|
|
namespace Yi.Framework.AiHub.Domain.AiChat;
|
|
|
|
public interface IChatService
|
|
{
|
|
public IAsyncEnumerable<CompleteChatResponse> CompleteChatAsync(AiModelDescribe aiModelDescribe, List<ChatMessage> messages,
|
|
CancellationToken cancellationToken);
|
|
} |