feat: 新增AI聊天服务,重构任务提示词相关逻辑
1. 新增AI聊天服务接口、实现、控制器及相关DTO、配置类 2. 调整JournalPageTaskTypeEnum枚举值修正 3. 合并任务的基础Prompt和自定义Prompt为单个Prompt字段 4. 精简任务输出DTO冗余属性
This commit is contained in:
16
QYZH.InteractiveMagazine.IService/IAiChatService.cs
Normal file
16
QYZH.InteractiveMagazine.IService/IAiChatService.cs
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user