TakaiApplicationParams.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.takai.ai.domain.entity;
  2. import java.util.List;
  3. public class TakaiApplicationParams {
  4. private String name;
  5. private String desc;
  6. private String prompt;
  7. private String top_p;
  8. private String temperature;
  9. private String knowledge_ids;
  10. private String model;
  11. private String icon_color;
  12. private String icon_type;
  13. private String knowledge_info;
  14. private String param_desc;
  15. private Integer max_token;
  16. private Integer slice_count;
  17. private List<String> questionList;
  18. private Long typeId;
  19. public String getName() {
  20. return name;
  21. }
  22. public void setName(String name) {
  23. this.name = name;
  24. }
  25. public String getDesc() {
  26. return desc;
  27. }
  28. public void setDesc(String desc) {
  29. this.desc = desc;
  30. }
  31. public String getPrompt() {
  32. return prompt;
  33. }
  34. public void setPrompt(String prompt) {
  35. this.prompt = prompt;
  36. }
  37. public String getTop_p() {
  38. return top_p;
  39. }
  40. public void setTop_p(String top_p) {
  41. this.top_p = top_p;
  42. }
  43. public String getTemperature() {
  44. return temperature;
  45. }
  46. public void setTemperature(String temperature) {
  47. this.temperature = temperature;
  48. }
  49. public String getKnowledge_ids() {
  50. return knowledge_ids;
  51. }
  52. public void setKnowledge_ids(String knowledge_ids) {
  53. this.knowledge_ids = knowledge_ids;
  54. }
  55. public String getModel() {
  56. return model;
  57. }
  58. public void setModel(String model) {
  59. this.model = model;
  60. }
  61. public String getIcon_color() {
  62. return icon_color;
  63. }
  64. public void setIcon_color(String icon_color) {
  65. this.icon_color = icon_color;
  66. }
  67. public String getIcon_type() {
  68. return icon_type;
  69. }
  70. public void setIcon_type(String icon_type) {
  71. this.icon_type = icon_type;
  72. }
  73. public String getKnowledge_info() {
  74. return knowledge_info;
  75. }
  76. public void setKnowledge_info(String knowledge_info) {
  77. this.knowledge_info = knowledge_info;
  78. }
  79. public String getParam_desc() {
  80. return param_desc;
  81. }
  82. public void setParam_desc(String param_desc) {
  83. this.param_desc = param_desc;
  84. }
  85. public Integer getMax_token() {
  86. return max_token;
  87. }
  88. public void setMax_token(Integer max_token) {
  89. this.max_token = max_token;
  90. }
  91. public List<String> getQuestionList() {
  92. return questionList;
  93. }
  94. public void setQuestionList(List<String> questionList) {
  95. this.questionList = questionList;
  96. }
  97. public Integer getSlice_count() {
  98. return slice_count;
  99. }
  100. public void setSlice_count(Integer slice_count) {
  101. this.slice_count = slice_count;
  102. }
  103. public Long getTypeId() {
  104. return typeId;
  105. }
  106. public void setTypeId(Long typeId) {
  107. this.typeId = typeId;
  108. }
  109. }