SpringBoot项目连接deepseek
本文介绍了如何连接并使用DeepSeek API的详细步骤:1)在官网创建API Key并保存;2)在SpringBoot项目中导入OkHttp依赖;3)提供了完整的Java示例代码,包括创建请求体、发送HTTP请求和处理响应;4)演示了如何将代码集成到Service层,通过修改输入内容与DeepSeek进行交互。关键点包括API Key的配置、请求参数的设置以及响应结果的获取。
·
目录
6 连接deepseek
6.1 通用步骤
- 打开deepseek官网https://www.deepseek.com
- 点击API开放平台
- 点击用量信息去充值
- 充值完后点击API keys,然后创建API key
创建成功后,要保存后弹框里的信息,因为关闭,就再也找不到了,除非删除,在重新创建
- 点击接口文档,找到对话,然后再最右边选择自己需要的语言。
复制OKHTTP里面的内容。
6.2 SpringBoot项目里的步骤
- 导入相关依赖
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.14.9</version>
</dependency>
2.复制并且修改下面的代码,修改第6行代码,把从sk开头的东西改为6.1里创建的API key。
import okhttp3.*;
import java.io.IOException;
public class Utils {
// 替换为你的 API Key
private static final String API_KEY = "Bearer sk-666";
private static final String API_URL = "https://api.deepseek.com/chat/completions";
public static void main(String[] args) throws IOException {
// 1. 创建请求体(JSON)
String jsonBody = String.format("{\n"
+ " \"model\": \"deepseek-chat\",\n"
+ " \"messages\": [\n"
+ " {\"role\": \"user\", \"content\": \"%s\"}\n"
+ " ],\n"
+ " \"temperature\": 0.7,\n"
+ " \"top_p\": 0.8\n"
+ "}", "你好");
// 2. 创建 HTTP 请求
OkHttpClient client = new OkHttpClient();
RequestBody body = RequestBody.create(MediaType.get("application/json"), jsonBody);
Request request = new Request.Builder()
.url(API_URL)
.post(body)
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json")
.addHeader("Authorization", API_KEY) // 直接使用 API Key
.build();
// 3. 发送请求并处理响应
try (Response response = client.newCall(request).execute()) {
if (!response.isSuccessful()) {
throw new IOException("请求失败: " + response);
}
System.out.println("响应结果:\n" + response.body().string());
}
}
}
此时运行会出现以下结果

只要把第18行代码的“你好”,改成自己问的东西,就可以和得到deepseek对应的回答了。
上面这个代码要放在service层。示例如下
package com.qcby.websocket.service.impl;
import com.qcby.websocket.service.DeepSeekService;
import okhttp3.*;
import org.springframework.stereotype.Service;
import java.io.IOException;
@Service
public class DeepSeekServiceImpl implements DeepSeekService {
// 替换为你的 API Key
private static final String API_KEY = "Bearer sk-6666";
private static final String API_URL = "https://api.deepseek.com/chat/completions";
public String getJson(String context) throws IOException {
// 1. 创建请求体(JSON)
String jsonBody = String.format("{\n"
+ " \"model\": \"deepseek-chat\",\n"
+ " \"messages\": [\n"
+ " {\"role\": \"user\", \"content\": \"%s\"}\n"
+ " ],\n"
+ " \"temperature\": 0.7,\n"
+ " \"top_p\": 0.8\n"
+ "}", context);
// 2. 创建 HTTP 请求
OkHttpClient client = new OkHttpClient();
RequestBody body = RequestBody.create(MediaType.get("application/json"), jsonBody);
Request request = new Request.Builder()
.url(API_URL)
.post(body)
.addHeader("Content-Type", "application/json")
.addHeader("Accept", "application/json")
.addHeader("Authorization", API_KEY) // 直接使用API Key
.build();
// 3. 发送请求并处理响应
try (Response response = client.newCall(request).execute()) {
if (!response.isSuccessful()) {
throw new IOException("请求失败: " + response);
}
return response.body().string();
}
}
}
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐

所有评论(0)