ChatGptDto.cs 404 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.SmallFun
  7. {
  8. /// <summary>
  9. /// ChatGPT 自动补全 请求dto
  10. /// </summary>
  11. public class CompletionsDto
  12. {
  13. /// <summary>
  14. /// 提示(问题)
  15. /// </summary>
  16. public string? Prompt { get; set; }
  17. }
  18. }