|
@@ -58,8 +58,11 @@ public class DeepSeekController {
|
|
|
Long userId = SecurityUtil.getUserId();
|
|
|
String emitterKey = APPLICATION_NAME + "-userid-" + Convert.toStr(userId);
|
|
|
|
|
|
- Flux<ChatCompletionResponse> flux = deepSeekClient.chatFluxCompletion(param.getQuestion());
|
|
|
- System.out.println(flux);
|
|
|
+
|
|
|
+ // https://api-docs.deepseek.com/zh-cn/
|
|
|
+
|
|
|
+ // 还是手搓api 吧,不要用 SDK
|
|
|
+
|
|
|
|
|
|
// // 创建一个 CompletableFuture 来执行异步任务
|
|
|
// CompletableFuture<Void> future = CompletableFuture.runAsync(() -> {
|