From 1fed6ffc652e09104b13b074a402a88d4c9c6913 Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Mon, 12 May 2025 11:15:51 +0800 Subject: [PATCH] Fix wrong artifactId in DeepSeek document Signed-off-by: Yanming Zhou --- .../antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc index 897468e494c..c07e3e94732 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc @@ -32,7 +32,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil ---- org.springframework.ai - spring-ai-deepseek-spring-boot-starter + spring-ai-starter-model-deepseek ---- @@ -41,7 +41,7 @@ or to your Gradle `build.gradle` file. [source,groovy] ---- dependencies { - implementation 'org.springframework.ai:spring-ai-deepseek-spring-boot-starter' + implementation 'org.springframework.ai:spring-ai-starter-model-deepseek' } ---- @@ -133,7 +133,7 @@ TIP: In addition to the model-specific link:https://github.com/spring-projects/s == Sample Controller (Auto-configuration) -https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-deepseek-spring-boot-starter` to your pom (or gradle) dependencies. +https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-starter-model-deepseek` to your pom (or gradle) dependencies. Add an `application.properties` file under the `src/main/resources` directory to enable and configure the DeepSeek Chat model: