using QYZH.InteractiveMagazine.Models.Dto; namespace QYZH.InteractiveMagazine.IService; /// /// AI聊天服务接口 /// public interface IAiChatService { /// /// 发送消息进行AI对话 /// /// 聊天输入 /// AI返回的提示词内容 Task ChatAsync(AiChatInput input); }