TASK:LLM;

This commit is contained in:
shahaibo
2025-05-20 16:47:43 +08:00
parent 82388b0c19
commit a0bd4cfa38

View File

@@ -58,8 +58,9 @@ public class LLMController {
@RequestParam Long projectId, @RequestParam Long projectId,
@RequestParam(required = false) String fileUrl, @RequestParam(required = false) String fileUrl,
@RequestParam(required = false) List<String> imageUrlList, @RequestParam(required = false) List<String> imageUrlList,
@RequestParam String token) { @RequestParam String token,
return llmService.stream(prompt, projectId, fileUrl, imageUrlList, token); @RequestParam Boolean enableThinking) {
return llmService.stream(prompt, projectId, fileUrl, imageUrlList, token, enableThinking);
} }
@ApiOperation(value = "对话创建项目") @ApiOperation(value = "对话创建项目")