IAiAppService.cs 495 B

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