feat:测试代码

law-v2025-01
wangxy 1 month ago
parent a6032ba527
commit 109d009dc1

@ -159,3 +159,11 @@ aj:
aes-status: true aes-status: true
# 滑动干扰项(0/1/2) # 滑动干扰项(0/1/2)
interference-options: 0 interference-options: 0
#seepseek配置
deepseek:
api-key: sk-f1a69dbdd92a428db6737a7fe1c64740
base-url: https://api.deepseek.com/chat/completions #http://192.168.110.56:11434/v1/chat/completions
model: deepseek-chat #deepseek-r1:1.5b

@ -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);

@ -4,9 +4,8 @@ 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.http.*; import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import java.util.Arrays; import java.util.Arrays;
import java.util.Optional; import java.util.Optional;
@ -23,13 +22,11 @@ import java.util.Optional;
@Service @Service
public class DeepSeekLocalService { public class DeepSeekLocalService {
private static final String LOCAL_API_URL = "http://192.168.110.56:11434/v1/chat/completions"; @Value(value = "${deepseek.base-url}")
private String baseUrl;
private final RestTemplate restTemplate; @Value(value = "${deepseek.model}")
private String model;
public DeepSeekLocalService(RestTemplate restTemplate) {
this.restTemplate = restTemplate;
}
public String callLocalDeepSeek(String content) { public String callLocalDeepSeek(String content) {
// 构建请求体 // 构建请求体
@ -42,11 +39,11 @@ public class DeepSeekLocalService {
userMessage.setContent(content); userMessage.setContent(content);
DeepSeekRequest requestBody = new DeepSeekRequest(); DeepSeekRequest requestBody = new DeepSeekRequest();
requestBody.setModel("deepseek-r1:1.5b"); 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, LOCAL_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")
.execute(); .execute();

Loading…
Cancel
Save