| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- package com.takai.ai.domain.entity;
- import java.util.List;
- public class TakaiApplicationParams {
- private String name;
- private String desc;
- private String prompt;
- private String top_p;
- private String temperature;
- private String knowledge_ids;
- private String model;
- private String icon_color;
- private String icon_type;
- private String knowledge_info;
- private String param_desc;
- private Integer max_token;
- private Integer slice_count;
- private List<String> questionList;
- private Long typeId;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getDesc() {
- return desc;
- }
- public void setDesc(String desc) {
- this.desc = desc;
- }
- public String getPrompt() {
- return prompt;
- }
- public void setPrompt(String prompt) {
- this.prompt = prompt;
- }
- public String getTop_p() {
- return top_p;
- }
- public void setTop_p(String top_p) {
- this.top_p = top_p;
- }
- public String getTemperature() {
- return temperature;
- }
- public void setTemperature(String temperature) {
- this.temperature = temperature;
- }
- public String getKnowledge_ids() {
- return knowledge_ids;
- }
- public void setKnowledge_ids(String knowledge_ids) {
- this.knowledge_ids = knowledge_ids;
- }
- public String getModel() {
- return model;
- }
- public void setModel(String model) {
- this.model = model;
- }
- public String getIcon_color() {
- return icon_color;
- }
- public void setIcon_color(String icon_color) {
- this.icon_color = icon_color;
- }
- public String getIcon_type() {
- return icon_type;
- }
- public void setIcon_type(String icon_type) {
- this.icon_type = icon_type;
- }
- public String getKnowledge_info() {
- return knowledge_info;
- }
- public void setKnowledge_info(String knowledge_info) {
- this.knowledge_info = knowledge_info;
- }
- public String getParam_desc() {
- return param_desc;
- }
- public void setParam_desc(String param_desc) {
- this.param_desc = param_desc;
- }
- public Integer getMax_token() {
- return max_token;
- }
- public void setMax_token(Integer max_token) {
- this.max_token = max_token;
- }
- public List<String> getQuestionList() {
- return questionList;
- }
- public void setQuestionList(List<String> questionList) {
- this.questionList = questionList;
- }
- public Integer getSlice_count() {
- return slice_count;
- }
- public void setSlice_count(Integer slice_count) {
- this.slice_count = slice_count;
- }
- public Long getTypeId() {
- return typeId;
- }
- public void setTypeId(Long typeId) {
- this.typeId = typeId;
- }
- }
|