refactor(llm): 注释掉基模型同步任务定时器

减少维护,先注释掉基模型同步任务的定时器配置。
This commit is contained in:
limin 2025-02-14 11:42:07 +08:00
parent 353857d859
commit 134473af14

View File

@ -36,8 +36,8 @@ public class BaseModelTaskService {
BaseModelService baseModelService;
private static final String DEFAULT_MODEL_URL_SUFFIX = "/v1/chat/completions";
@Scheduled(cron ="0 0/1 * * * ?")
// 减少维护 先注释掉
// @Scheduled(cron ="0 0/1 * * * ?")
public void synchronous() throws JsonProcessingException {
List<BaseModelDO> baseModelList = baseModelService.getBaseModelList();
for (BaseModelDO baseModelDO : baseModelList) {