|
|
@ -4,6 +4,7 @@ import cn.hutool.http.HttpResponse;
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
import cn.hutool.http.Method;
|
|
|
|
import cn.hutool.http.Method;
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
import org.springframework.http.*;
|
|
|
|
import org.springframework.http.*;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
@ -23,14 +24,15 @@ import java.util.Optional;
|
|
|
|
@Service
|
|
|
|
@Service
|
|
|
|
public class DeepSeekApiService {
|
|
|
|
public class DeepSeekApiService {
|
|
|
|
|
|
|
|
|
|
|
|
private static final String API_URL = "https://api.deepseek.com/chat/completions";
|
|
|
|
@Value(value = "${deepseek.base-url}")
|
|
|
|
private static final String API_KEY = "sk-f1a69dbdd92a428db6737a7fe1c64740"; // 替换为你的 API Key
|
|
|
|
private String baseUrl;
|
|
|
|
|
|
|
|
|
|
|
|
private final RestTemplate restTemplate;
|
|
|
|
@Value(value = "${deepseek.api-key}")
|
|
|
|
|
|
|
|
private String apiKey;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Value(value = "${deepseek.model}")
|
|
|
|
|
|
|
|
private String model;
|
|
|
|
|
|
|
|
|
|
|
|
public DeepSeekApiService(RestTemplate restTemplate) {
|
|
|
|
|
|
|
|
this.restTemplate = restTemplate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String callDeepSeekApi(String content) {
|
|
|
|
public String callDeepSeekApi(String content) {
|
|
|
|
// 构建请求体对象
|
|
|
|
// 构建请求体对象
|
|
|
@ -43,14 +45,14 @@ public class DeepSeekApiService {
|
|
|
|
userMessage.setContent(content);
|
|
|
|
userMessage.setContent(content);
|
|
|
|
|
|
|
|
|
|
|
|
DeepSeekRequest requestBody = new DeepSeekRequest();
|
|
|
|
DeepSeekRequest requestBody = new DeepSeekRequest();
|
|
|
|
requestBody.setModel("deepseek-chat");
|
|
|
|
requestBody.setModel(model);
|
|
|
|
requestBody.setMessages(Arrays.asList(systemMessage, userMessage));
|
|
|
|
requestBody.setMessages(Arrays.asList(systemMessage, userMessage));
|
|
|
|
requestBody.setStream(false);
|
|
|
|
requestBody.setStream(false);
|
|
|
|
// 执行 HTTP 请求
|
|
|
|
// 执行 HTTP 请求
|
|
|
|
HttpResponse response = HttpUtil.createRequest(Method.POST, API_URL)
|
|
|
|
HttpResponse response = HttpUtil.createRequest(Method.POST, baseUrl)
|
|
|
|
.body(JSONUtil.toJsonStr(requestBody))
|
|
|
|
.body(JSONUtil.toJsonStr(requestBody))
|
|
|
|
.header("Content-Type", "application/json")
|
|
|
|
.header("Content-Type", "application/json")
|
|
|
|
.header("Authorization", "Bearer " + API_KEY)
|
|
|
|
.header("Authorization", "Bearer " + apiKey)
|
|
|
|
.header("Accept", "application/json")
|
|
|
|
.header("Accept", "application/json")
|
|
|
|
.execute();
|
|
|
|
.execute();
|
|
|
|
DeepSeekResponse chatResponse = JSONUtil.toBean(response.body(), DeepSeekResponse.class);
|
|
|
|
DeepSeekResponse chatResponse = JSONUtil.toBean(response.body(), DeepSeekResponse.class);
|
|
|
|