From c5f07e540299cf4dbd314027416dd5ad9966a398 Mon Sep 17 00:00:00 2001 From: ashni <105304831+ashni-mongodb@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:49:26 -0400 Subject: [PATCH] Enhance MongoDB docs with additional tutorials Update mongodb.adoc to include links to both beginner and intermediate content for Spring AI and MongoDB integration. Add a new section "Tutorials and Code Examples" with: - Link to the Getting Started guide for basic integration - Link to a detailed RAG tutorial for more advanced usage This change provides users with a clear path from initial setup to more complex implementations using the MongoDB Atlas Vector Store. --- .../antora/modules/ROOT/pages/api/vectordbs/mongodb.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs/mongodb.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs/mongodb.adoc index 895e5eda84..359160ad1a 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs/mongodb.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs/mongodb.adoc @@ -256,5 +256,8 @@ List results = vectorStore.similaritySearch( ); ---- +== Tutorials and Code Examples +To get started with Spring AI and MongoDB: -If you would like to try out Spring AI with MongoDB, see https://www.mongodb.com/docs/atlas/atlas-vector-search/ai-integrations/spring-ai/#std-label-spring-ai[Get Started with the Spring AI Integration]. +* See the https://www.mongodb.com/docs/atlas/atlas-vector-search/ai-integrations/spring-ai/#std-label-spring-ai[Getting Started guide for Spring AI Integration]. +* For a comprehensive code example demonstrating Retrieval Augmented Generation (RAG) with Spring AI and MongoDB, refer to this https://www.mongodb.com/developer/languages/java/retrieval-augmented-generation-spring-ai/[detailed tutorial].