using System.Text.Json; using Yi.Framework.AiHub.Domain.Shared.Dtos; using Yi.Framework.AiHub.Domain.Shared.Dtos.OpenAi; namespace Yi.Framework.AiHub.Domain.AiGateWay; public interface IGeminiGenerateContentService { /// /// 聊天完成-流式 /// /// /// /// /// public IAsyncEnumerable GenerateContentStreamAsync(AiModelDescribe aiModelDescribe, JsonElement input, CancellationToken cancellationToken); /// /// 聊天完成-非流式 /// /// /// /// /// public Task GenerateContentAsync(AiModelDescribe aiModelDescribe, JsonElement input, CancellationToken cancellationToken); }