From b76e6225b622bfdb7565c6ad246d3a0b7abc94cb Mon Sep 17 00:00:00 2001
From: 0007 <0007@qq.com>
Date: Wed, 27 Aug 2025 19:57:27 +0800
Subject: [PATCH] Add File
---
.../agentsflex/llm/deepseek/DeepseekLlm.java | 117 ++++++++++++++++++
1 file changed, 117 insertions(+)
create mode 100644 agents-flex-llm/agents-flex-llm-deepseek/src/main/java/com/agentsflex/llm/deepseek/DeepseekLlm.java
diff --git a/agents-flex-llm/agents-flex-llm-deepseek/src/main/java/com/agentsflex/llm/deepseek/DeepseekLlm.java b/agents-flex-llm/agents-flex-llm-deepseek/src/main/java/com/agentsflex/llm/deepseek/DeepseekLlm.java
new file mode 100644
index 0000000..f5bb5ee
--- /dev/null
+++ b/agents-flex-llm/agents-flex-llm-deepseek/src/main/java/com/agentsflex/llm/deepseek/DeepseekLlm.java
@@ -0,0 +1,117 @@
+/*
+ * Copyright (c) 2023-2025, Agents-Flex (fuhai999@gmail.com).
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.agentsflex.llm.deepseek;
+
+import com.agentsflex.core.document.Document;
+import com.agentsflex.core.llm.BaseLlm;
+import com.agentsflex.core.llm.ChatOptions;
+import com.agentsflex.core.llm.StreamResponseListener;
+import com.agentsflex.core.llm.client.BaseLlmClientListener;
+import com.agentsflex.core.llm.client.HttpClient;
+import com.agentsflex.core.llm.client.LlmClient;
+import com.agentsflex.core.llm.client.LlmClientListener;
+import com.agentsflex.core.llm.client.impl.SseClient;
+import com.agentsflex.core.llm.embedding.EmbeddingOptions;
+import com.agentsflex.core.llm.response.AiMessageResponse;
+import com.agentsflex.core.parser.AiMessageParser;
+import com.agentsflex.core.prompt.Prompt;
+import com.agentsflex.core.store.VectorData;
+import com.agentsflex.core.util.LogUtil;
+import com.agentsflex.core.util.StringUtil;
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.JSONObject;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.function.Consumer;
+
+/**
+ * @author huangjf
+ * @version : v1.0
+ */
+public class DeepseekLlm extends BaseLlm {
+
+ private final Map headers = new HashMap<>();
+ private final HttpClient httpClient = new HttpClient();
+ private final AiMessageParser aiMessageParser = DeepseekLlmUtil.getAiMessageParser(false);
+ private final AiMessageParser streamMessageParser = DeepseekLlmUtil.getAiMessageParser(true);
+
+ public DeepseekLlm(DeepseekConfig config) {
+ super(config);
+ headers.put("Content-Type", "application/json");
+ headers.put("Accept", "application/json");
+ headers.put("Authorization", "Bearer " + getConfig().getApiKey());
+ }
+
+ public static DeepseekLlm of(String apiKey) {
+ DeepseekConfig config = new DeepseekConfig();
+ config.setApiKey(apiKey);
+ return new DeepseekLlm(config);
+ }
+
+ @Override
+ public AiMessageResponse chat(Prompt prompt, ChatOptions options) {
+
+ Consumer