This commit is contained in:
2026-06-24 16:33:09 +08:00
12 changed files with 315 additions and 100 deletions

View File

@ -0,0 +1,16 @@
using QYZH.InteractiveMagazine.Models.Dto;
namespace QYZH.InteractiveMagazine.IService;
/// <summary>
/// AI聊天服务接口
/// </summary>
public interface IAiChatService
{
/// <summary>
/// 发送消息进行AI对话
/// </summary>
/// <param name="input">聊天输入</param>
/// <returns>AI返回的提示词内容</returns>
Task<AiChatOutput> ChatAsync(AiChatInput input);
}