refactor(module-llm): 注释掉 doc 文件转换逻辑

- 注释掉了处理 doc 文件的代码块
- 保留了处理 md 文件的注释代码块
This commit is contained in:
Liuyang 2025-03-01 17:27:42 +08:00
parent 0edfd15f10
commit b6e65d777a
2 changed files with 8 additions and 0 deletions

View File

@ -27,4 +27,8 @@ public class ChatReqVO {
private String systemPrompt;
@Schema(description = "知识库id")
private Long knowledge;
@Schema(description = "单次回复限制max_tokens")
private String maxTokens;
@Schema(description = "随机性temperature")
private Long temperature;
}

View File

@ -32,4 +32,8 @@ public class DataRefluxDataSaveReqVO {
@Schema(description = "Response")
private String response;
@Schema(description = "单次回复限制max_tokens")
private String maxTokens;
@Schema(description = "随机性temperature")
private Long temperature;
}