diff --git a/yudao-module-llm/yudao-module-llm-biz/src/main/java/cn/iocoder/yudao/module/llm/framework/backend/config/LLMBackendProperties.java b/yudao-module-llm/yudao-module-llm-biz/src/main/java/cn/iocoder/yudao/module/llm/framework/backend/config/LLMBackendProperties.java index 65c6cef14..69ca87553 100644 --- a/yudao-module-llm/yudao-module-llm-biz/src/main/java/cn/iocoder/yudao/module/llm/framework/backend/config/LLMBackendProperties.java +++ b/yudao-module-llm/yudao-module-llm-biz/src/main/java/cn/iocoder/yudao/module/llm/framework/backend/config/LLMBackendProperties.java @@ -34,4 +34,28 @@ public class LLMBackendProperties { @NotNull(message = "支持多个文件id查询向量") private String ragQueryMultiple; + + @NotNull(message = "训练集列表 GET") + private String datasetList; + + @NotNull(message = "上传训练集 POST") + private String datasetCreate; + + @NotNull(message = "删除训练集 DELETE") + private String datasetDelete; + + @NotNull(message = "训练集标注 GET") + private String annotationTaskList; + + @NotNull(message = "标注信息 GET") + private String annotationTask; + + @NotNull(message = "保存标注 POST") + private String annotationTaskSave; + + @NotNull(message = "大模型列表 GET") + private String modelsList; + + @NotNull(message = "登录 POST") + private String login; }