From 85667d1b802784d7104f408dd4dfaff57a18d40f Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+RogerBarreto@users.noreply.github.com> Date: Mon, 27 May 2024 11:39:20 +0100 Subject: [PATCH 1/5] Add missing code samples reference to dotnet Readme --- dotnet/README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/dotnet/README.md b/dotnet/README.md index f63fae91b9aa..1e946b056e69 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -3,9 +3,8 @@ ## OpenAI / Azure OpenAI API keys To run the LLM prompts and semantic functions in the examples below, make sure -you have an -[OpenAI API Key](https://platform.openai.com) or -[Azure OpenAI Service Key](https://learn.microsoft.com/azure/cognitive-services/openai/quickstart?pivots=rest-api). +you have an [Azure OpenAI Service Key](https://learn.microsoft.com/azure/cognitive-services/openai/quickstart?pivots=rest-api) or +[OpenAI API Key](https://platform.openai.com). ## Nuget package @@ -82,6 +81,18 @@ requirements and setup instructions. 9. [Chatting with ChatGPT and Images](./notebooks/08-chatGPT-with-DALL-E-3.ipynb) 10. [BingSearch using Kernel](./notebooks/10-BingSearch-using-kernel.ipynb) +# Semantic Kernel Samples + +The repository contains also code samples that demonstrates how to get started + +| Type | Description | +| ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------- | +| [`GettingStarted`](./GettingStarted/README.md) | Take this step by step tutorial to get started with the Semantic Kernel and get introduced to the key concepts. | +| [`GettingStartedWithAgents`](./GettingStartedWithAgents/README.md) | Take this step by step tutorial to get started with the Semantic Kernel Agents and get introduced to the key concepts. | +| [`Concepts`](./Concepts/README.md) | This section contains focussed samples which illustrate all of the concepts included in the Semantic Kernel. | +| [`Demos`](./Demos/README.md) | Look here to find a sample which demonstrate how to use many of Semantic Kernel features. | +| [`LearnResources`](./LearnResources/README.md) | Code snippets that are related to online documentation sources like Microsoft Learn, DevBlogs and others | + # Nuget packages Semantic Kernel provides a set of nuget packages to allow extending the core with From 9bee982e179dde9c8668d13aae54fc8b5018810f Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+RogerBarreto@users.noreply.github.com> Date: Mon, 27 May 2024 11:40:52 +0100 Subject: [PATCH 2/5] List --- dotnet/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotnet/README.md b/dotnet/README.md index 1e946b056e69..db4cdcf2e9e3 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -3,8 +3,10 @@ ## OpenAI / Azure OpenAI API keys To run the LLM prompts and semantic functions in the examples below, make sure -you have an [Azure OpenAI Service Key](https://learn.microsoft.com/azure/cognitive-services/openai/quickstart?pivots=rest-api) or -[OpenAI API Key](https://platform.openai.com). +you have an + +- [Azure OpenAI Service Key](https://learn.microsoft.com/azure/cognitive-services/openai/quickstart?pivots=rest-api) or +- [OpenAI API Key](https://platform.openai.com). ## Nuget package From d7c5b9c0881348c8911f82dd406becbea2c070db Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+RogerBarreto@users.noreply.github.com> Date: Mon, 27 May 2024 11:42:02 +0100 Subject: [PATCH 3/5] Fix links --- dotnet/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dotnet/README.md b/dotnet/README.md index db4cdcf2e9e3..21dbaf5bfabd 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -87,13 +87,13 @@ requirements and setup instructions. The repository contains also code samples that demonstrates how to get started -| Type | Description | -| ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------- | -| [`GettingStarted`](./GettingStarted/README.md) | Take this step by step tutorial to get started with the Semantic Kernel and get introduced to the key concepts. | -| [`GettingStartedWithAgents`](./GettingStartedWithAgents/README.md) | Take this step by step tutorial to get started with the Semantic Kernel Agents and get introduced to the key concepts. | -| [`Concepts`](./Concepts/README.md) | This section contains focussed samples which illustrate all of the concepts included in the Semantic Kernel. | -| [`Demos`](./Demos/README.md) | Look here to find a sample which demonstrate how to use many of Semantic Kernel features. | -| [`LearnResources`](./LearnResources/README.md) | Code snippets that are related to online documentation sources like Microsoft Learn, DevBlogs and others | +| Type | Description | +| -------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | +| [`GettingStarted`](./samples/GettingStarted/README.md) | Take this step by step tutorial to get started with the Semantic Kernel and get introduced to the key concepts. | +| [`GettingStartedWithAgents`](./samples/GettingStartedWithAgents/README.md) | Take this step by step tutorial to get started with the Semantic Kernel Agents and get introduced to the key concepts. | +| [`Concepts`](./samples/Concepts/README.md) | This section contains focussed samples which illustrate all of the concepts included in the Semantic Kernel. | +| [`Demos`](./samples/Demos/README.md) | Look here to find a sample which demonstrate how to use many of Semantic Kernel features. | +| [`LearnResources`](./samples/LearnResources/README.md) | Code snippets that are related to online documentation sources like Microsoft Learn, DevBlogs and others | # Nuget packages From 7e292e909a23933cbcc27b737ab43f502cf3605d Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+RogerBarreto@users.noreply.github.com> Date: Mon, 27 May 2024 14:24:36 +0100 Subject: [PATCH 4/5] Update dotnet/README.md Co-authored-by: Mark Wallace <127216156+markwallace-microsoft@users.noreply.github.com> --- dotnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/README.md b/dotnet/README.md index 21dbaf5bfabd..b789a6f6c400 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -85,7 +85,7 @@ requirements and setup instructions. # Semantic Kernel Samples -The repository contains also code samples that demonstrates how to get started +The repository also contains the following code samples: | Type | Description | | -------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | From f2a640376fd11f85769bf2987ee687f3e2e60a5c Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+RogerBarreto@users.noreply.github.com> Date: Mon, 27 May 2024 14:25:05 +0100 Subject: [PATCH 5/5] Update dotnet/README.md --- dotnet/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/README.md b/dotnet/README.md index b789a6f6c400..24bb4355b7eb 100644 --- a/dotnet/README.md +++ b/dotnet/README.md @@ -92,7 +92,7 @@ The repository also contains the following code samples: | [`GettingStarted`](./samples/GettingStarted/README.md) | Take this step by step tutorial to get started with the Semantic Kernel and get introduced to the key concepts. | | [`GettingStartedWithAgents`](./samples/GettingStartedWithAgents/README.md) | Take this step by step tutorial to get started with the Semantic Kernel Agents and get introduced to the key concepts. | | [`Concepts`](./samples/Concepts/README.md) | This section contains focussed samples which illustrate all of the concepts included in the Semantic Kernel. | -| [`Demos`](./samples/Demos/README.md) | Look here to find a sample which demonstrate how to use many of Semantic Kernel features. | +| [`Demos`](./samples/Demos/README.md) | Look here to find a sample which demonstrates how to use many of Semantic Kernel features. | | [`LearnResources`](./samples/LearnResources/README.md) | Code snippets that are related to online documentation sources like Microsoft Learn, DevBlogs and others | # Nuget packages