feat:测试代码

law-v2025-01
wangxy 1 month ago
parent db817ecf8d
commit a6032ba527

@ -101,7 +101,7 @@ public class LawController extends BaseController {
private DeepSeekLocalService deepSeekLocalService; private DeepSeekLocalService deepSeekLocalService;
@PostMapping("/call-local-deepseek") @PostMapping("/call-local-deepseek")
public R callLocalDeepSeek(@RequestParam(required = false) String content) { public R callLocalDeepSeek(@RequestParam(required = false) String content) throws JsonProcessingException {
return R.ok(deepSeekLocalService.callLocalDeepSeek(content)); return R.ok(deepSeekLocalService.callLocalDeepSeek(content));
} }

@ -83,6 +83,10 @@
<artifactId>captcha-spring-boot-starter</artifactId> <artifactId>captcha-spring-boot-starter</artifactId>
<version>1.2.7</version> <version>1.2.7</version>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies> </dependencies>

@ -1,10 +1,15 @@
package com.ruoyi.framework.web.service; package com.ruoyi.framework.web.service;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import cn.hutool.http.Method;
import cn.hutool.json.JSONUtil;
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;
import java.util.Arrays; import java.util.Arrays;
import java.util.Optional;
/** /**
* ClassName: DeepSeekApiService * ClassName: DeepSeekApiService
@ -28,10 +33,6 @@ public class DeepSeekApiService {
} }
public String callDeepSeekApi(String content) { public String callDeepSeekApi(String content) {
// 设置请求头
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
headers.set("Authorization", "Bearer " + API_KEY);
// 构建请求体对象 // 构建请求体对象
DeepSeekRequest.Message systemMessage = new DeepSeekRequest.Message(); DeepSeekRequest.Message systemMessage = new DeepSeekRequest.Message();
systemMessage.setRole("system"); systemMessage.setRole("system");
@ -45,21 +46,28 @@ public class DeepSeekApiService {
requestBody.setModel("deepseek-chat"); requestBody.setModel("deepseek-chat");
requestBody.setMessages(Arrays.asList(systemMessage, userMessage)); requestBody.setMessages(Arrays.asList(systemMessage, userMessage));
requestBody.setStream(false); requestBody.setStream(false);
// 创建 HttpEntity // 执行 HTTP 请求
HttpEntity<DeepSeekRequest> requestEntity = new HttpEntity<>(requestBody, headers); HttpResponse response = HttpUtil.createRequest(Method.POST, API_URL)
// 发送 POST 请求 .body(JSONUtil.toJsonStr(requestBody))
ResponseEntity<String> response = restTemplate.exchange( .header("Content-Type", "application/json")
API_URL, .header("Authorization", "Bearer " + API_KEY)
HttpMethod.POST, .header("Accept", "application/json")
requestEntity, .execute();
String.class DeepSeekResponse chatResponse = JSONUtil.toBean(response.body(), DeepSeekResponse.class);
); System.out.println("返回数据: " + chatResponse.getChoices().get(0).getMessage().getContent());
// 处理响应 return extractResponse(chatResponse);
if (response.getStatusCode() == HttpStatus.OK) { }
return response.getBody();
} else { /**
throw new RuntimeException("Request failed with status code: " + response.getStatusCode()); *
} */
private String extractResponse(DeepSeekResponse response) {
return Optional.ofNullable(response)
.map(DeepSeekResponse::getChoices)
.filter(choices -> !choices.isEmpty())
.map(choices -> choices.get(0))
.map(choice -> choice.getMessage().getContent())
.orElseThrow(() -> new RuntimeException("Empty response"));
} }

@ -1,10 +1,15 @@
package com.ruoyi.framework.web.service; package com.ruoyi.framework.web.service;
import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil;
import cn.hutool.http.Method;
import cn.hutool.json.JSONUtil;
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;
import java.util.Arrays; import java.util.Arrays;
import java.util.Optional;
/** /**
* ClassName: DeepSeekLocalService * ClassName: DeepSeekLocalService
@ -27,10 +32,6 @@ public class DeepSeekLocalService {
} }
public String callLocalDeepSeek(String content) { public String callLocalDeepSeek(String content) {
// 设置请求头
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
// 构建请求体 // 构建请求体
DeepSeekRequest.Message systemMessage = new DeepSeekRequest.Message(); DeepSeekRequest.Message systemMessage = new DeepSeekRequest.Message();
systemMessage.setRole("system"); systemMessage.setRole("system");
@ -44,22 +45,25 @@ public class DeepSeekLocalService {
requestBody.setModel("deepseek-r1:1.5b"); requestBody.setModel("deepseek-r1:1.5b");
requestBody.setMessages(Arrays.asList(systemMessage, userMessage)); requestBody.setMessages(Arrays.asList(systemMessage, userMessage));
requestBody.setStream(false); requestBody.setStream(false);
// 创建 HttpEntity // 执行 HTTP 请求
HttpEntity<DeepSeekRequest> requestEntity = new HttpEntity<>(requestBody, headers); HttpResponse response = HttpUtil.createRequest(Method.POST, LOCAL_API_URL)
// 发送 POST 请求 .body(JSONUtil.toJsonStr(requestBody))
ResponseEntity<String> response = restTemplate.exchange( .header("Content-Type", "application/json")
LOCAL_API_URL, .execute();
HttpMethod.POST, DeepSeekResponse chatResponse = JSONUtil.toBean(response.body(), DeepSeekResponse.class);
requestEntity, System.out.println("返回数据: " + chatResponse.getChoices().get(0).getMessage().getContent());
String.class return extractResponse(chatResponse);
); }
// 处理响应
if (response.getStatusCode() == HttpStatus.OK) { /**
System.out.println("成功了!"); *
System.out.println("返回数据: " + response.getBody()); */
return response.getBody(); private String extractResponse(DeepSeekResponse response) {
} else { return Optional.ofNullable(response)
throw new RuntimeException("Request failed with status code: " + response.getStatusCode()); .map(DeepSeekResponse::getChoices)
} .filter(choices -> !choices.isEmpty())
.map(choices -> choices.get(0))
.map(choice -> choice.getMessage().getContent())
.orElseThrow(() -> new RuntimeException("Empty response"));
} }
} }

@ -0,0 +1,70 @@
package com.ruoyi.framework.web.service;
import lombok.Data;
import java.util.List;
/**
* ClassName: DeepSeekResponse
* Package: com.ruoyi.framework.web.service
* Description:
*
* @Author wangxy
* @Create 2025/2/24 10:38
* @Version 1.0
*/
@Data
public class DeepSeekResponse {
private String id;
private String object;
private Integer created;
private String model;
private List<Choices> choices;
private Usage usage;
private String system_fingerprint;
@Data
public static class Choices {
private Integer index;
private Message message;
private String logprobs;
private String finish_reason;
@Data
public static class Message {
private String role;
private String content;
}
}
@Data
public static class Usage {
private Integer prompt_tokens;
private Integer completion_tokens;
private Integer total_tokens;
private Prompt_tokens_details prompt_tokens_details;
private Integer prompt_cache_hit_tokens;
private Integer prompt_cache_miss_tokens;
@Data
public static class Prompt_tokens_details {
private Integer cached_tokens;
}
}
}
Loading…
Cancel
Save