From a80f403d120bc424e00b72cbac12ca9c1ebdc8a2 Mon Sep 17 00:00:00 2001 From: Freedain Date: Wed, 29 Jan 2025 14:45:00 -0800 Subject: [PATCH 1/6] Community page update & fix Signed-off-by: Freedain --- _data/page_community_datafile.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/page_community_datafile.json b/_data/page_community_datafile.json index 0ddbb8268..22283aea7 100644 --- a/_data/page_community_datafile.json +++ b/_data/page_community_datafile.json @@ -141,9 +141,9 @@ "URL": "https://events.linuxfoundation.org/opensearchcon-india/" }, { - "Name": "North America | TBD", - "ClassValue": "grayedOut-no-link", - "URL": "#" + "Name": "North America - September 8 - 10, San Jose, CA", + "ClassValue": "community-active-link", + "URL": "https://events.linuxfoundation.org/opensearchcon-north-america/" }, { "Name": "China | TBD", @@ -179,7 +179,7 @@ }, { "Name" : "Become a Solutions Provider", - "URL": "/https://github.com/opensearch-project/project-website/issues/new?template=solutionsProvider_add_new_solutionsProvider.yml/", + "URL": "https://github.com/opensearch-project/project-website/issues/new?template=solutionsProvider_add_new_solutionsProvider.yml", "IconPath": "/assets/img/iconography/OpenSearch-Providers-Icon.png", "card_ClassValue" : "card_bottomBorder_blue", "ClassValue": "icon-homepage-community-socialLink" @@ -187,7 +187,7 @@ { "Name": "Write a blog post", "IconPath": "/assets/img/iconography/OpenSearch-Blog-Icon.png", - "URL": "/blog/", + "URL": "https://github.com/opensearch-project/project-website/issues/new?template=blog_post.yml", "ClassValue": "icon-homepage-community-withSurroundingCircle", "card_ClassValue" : "card_bottomBorder_purple" } From a5dcbe9088ba2cf0b79a972fb19325fa2f77485f Mon Sep 17 00:00:00 2001 From: Nathalie Jonathan Date: Wed, 29 Jan 2025 18:12:28 -0800 Subject: [PATCH 2/6] Add tutorials in DeepSeek blog Signed-off-by: Nathalie Jonathan --- ...025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md index 862614964..e42759f71 100644 --- a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md +++ b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md @@ -259,6 +259,11 @@ The response contains the model output: } } ``` +## Tutorials +Following are the tutorials for integrating retrieval-augmented generation (RAG) in Amazon OpenSearch with [DeepSeek Chat Model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 Model](https://huggingface.co/deepseek-ai/DeepSeek-R1): +- [OpenSearch + DeepSeek Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) +- [OpenSearch + DeepSeek on Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) +- [OpenSearch + DeepSeek on Sagemaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md) ## Wrapping up From 52bfee463d496223df94af3df497aa268752178b Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:11:01 -0500 Subject: [PATCH 3/6] Apply suggestions from code review Co-authored-by: Nathan Bower Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> --- ...25-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md index e42759f71..7fe1e64f3 100644 --- a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md +++ b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md @@ -260,10 +260,10 @@ The response contains the model output: } ``` ## Tutorials -Following are the tutorials for integrating retrieval-augmented generation (RAG) in Amazon OpenSearch with [DeepSeek Chat Model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 Model](https://huggingface.co/deepseek-ai/DeepSeek-R1): +The following tutorials guide you through integrating RAG in OpenSearch with the [DeepSeek chat model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 model](https://huggingface.co/deepseek-ai/DeepSeek-R1): - [OpenSearch + DeepSeek Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) -- [OpenSearch + DeepSeek on Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) -- [OpenSearch + DeepSeek on Sagemaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md) +- [OpenSearch + DeepSeek on Amazon Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) +- [OpenSearch + DeepSeek on Amazon SageMaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md) ## Wrapping up From 9297f74d081402438264ca19758574629a11be7a Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:11:19 -0500 Subject: [PATCH 4/6] Update _posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> --- .../2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md index 7fe1e64f3..e81401d4d 100644 --- a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md +++ b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md @@ -260,6 +260,7 @@ The response contains the model output: } ``` ## Tutorials + The following tutorials guide you through integrating RAG in OpenSearch with the [DeepSeek chat model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 model](https://huggingface.co/deepseek-ai/DeepSeek-R1): - [OpenSearch + DeepSeek Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) - [OpenSearch + DeepSeek on Amazon Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) From 24536a42b0f12dbefab99f151de0cae2b508e6e2 Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:15:46 -0500 Subject: [PATCH 5/6] Apply suggestions from code review Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> --- ...25-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md index e81401d4d..4f802c24c 100644 --- a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md +++ b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md @@ -262,9 +262,9 @@ The response contains the model output: ## Tutorials The following tutorials guide you through integrating RAG in OpenSearch with the [DeepSeek chat model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 model](https://huggingface.co/deepseek-ai/DeepSeek-R1): -- [OpenSearch + DeepSeek Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) -- [OpenSearch + DeepSeek on Amazon Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) -- [OpenSearch + DeepSeek on Amazon SageMaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md) +- [OpenSearch + DeepSeek Chat Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) +- [OpenSearch + DeepSeek R1 on Amazon Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) +- [OpenSearch + DeepSeek R1 on Amazon SageMaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md) ## Wrapping up From b40a8949886dc37b09fc7b69a4cd1262c600957e Mon Sep 17 00:00:00 2001 From: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:16:23 -0500 Subject: [PATCH 6/6] Apply suggestions from code review Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> --- .../2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md index 4f802c24c..6f0b8c292 100644 --- a/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md +++ b/_posts/2025-01-28-OpenSearch-Now-Supports-DeepSeek-Chat-Models.md @@ -262,6 +262,7 @@ The response contains the model output: ## Tutorials The following tutorials guide you through integrating RAG in OpenSearch with the [DeepSeek chat model](https://api-docs.deepseek.com/api/create-chat-completion) and [DeepSeek R1 model](https://huggingface.co/deepseek-ai/DeepSeek-R1): + - [OpenSearch + DeepSeek Chat Service API](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_Chat_model.md) - [OpenSearch + DeepSeek R1 on Amazon Bedrock](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Bedrock.md) - [OpenSearch + DeepSeek R1 on Amazon SageMaker](https://github.com/opensearch-project/ml-commons/blob/main/docs/tutorials/aws/RAG_with_DeepSeek_R1_model_on_Sagemaker.md)