24 lines
651 B
Java
24 lines
651 B
Java
|
|
package com.bonus.ai.controller;
|
||
|
|
|
||
|
|
import org.slf4j.Logger;
|
||
|
|
import org.slf4j.LoggerFactory;
|
||
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
import com.bonus.common.core.domain.R;
|
||
|
|
import com.bonus.common.core.utils.file.FileUtils;
|
||
|
|
import com.bonus.system.api.domain.SysFile;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 文件请求处理
|
||
|
|
*
|
||
|
|
* @author bonus
|
||
|
|
*/
|
||
|
|
@RestController
|
||
|
|
public class LLMController
|
||
|
|
{
|
||
|
|
private static final Logger log = LoggerFactory.getLogger(LLMController.class);
|
||
|
|
|
||
|
|
|
||
|
|
}
|