123456789101112131415 |
- using HTEXGpt.Models;
- namespace HTEXGpt.Services
- {
- public interface IAiAppService
- {
- /// <summary>
- /// 向大模型发起对话请求-根据模型编码、用户ID
- /// </summary>
- /// <param name="modelType">模型类型</param>
- /// <param name="dto">消息参数</param>
- /// <returns></returns>
- public Task<ChatResponse> ChatMessage(string? modelType, ChatRequest dto, HttpContext httpContext,HttpResponse response);
- }
- }
|