using OpenAI.Chat; namespace Yi.Framework.AiHub.Domain.AiChat; public interface IChatService { public IAsyncEnumerable CompleteChatAsync(string modelId, List messages,CancellationToken cancellationToken); }