You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Getting started with LLM](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/00.IntroduceLLM.md)| Begin to know LLM, including OpenAI, Azure OpenAI Service and LLM on Hugging face ||||
14
-
|[Using Azure OpenAI Service With SDK](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/01.UsingAzureOpenAIServiceWithSDK.md)| Learn how to use Azure OpenAI Service with SDK | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/dotNET/01/dotNETSDKAOAIDemo.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/python/01/PythonSDKAOAIDemo.ipynb)</center> |<center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/java/01/JavaSDKAOAIDemo.ipynb)</center> |
15
-
|[Foundations of Semantic Kernel](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/02.IntroduceSemanticKernel.md)| What is Semantic Kernel? What are its advantages and disadvantages? Semantic Kernel related concepts, etc. | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/dotNET/02/LearnSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/python/02/LearnSK.ipynb)</center> |<center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/java/02/LearnSK.ipynb)</center> |
16
-
|[The skills of LLM - Plugins](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/03.Plugins.md)| We know that communicating with LLM requires the use of prompt engineering? For enterprise applications, there are many business-oriented prompt engineering. In Semantic Kernel we call it Plugins. In this session we will introduce how to use Semantic Kernel Plugins and how to define your own Plugins | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/dotNET/03/PluginWithSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/python/03/PluginWithSK.ipynb)</center> |<center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/java/03/PluginWithSK.ipynb)</center> |
17
-
|[Planner - Let LLM have planning work](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/04.Planner.md)| Human beings need to complete a job step by step, and the same goes for LLMs. Semantic Kernel has a very powerful task planning capability - Planner, in this session we will explain in detail how to define and use Planner to make your application more intelligent | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/dotNET/04/PlannerWithSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/python/04/PlannerWithSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/java/04/PlannerWithSK.ipynb)</center> |
18
-
|[Embedding Skills](https://github.com/microsoft/SemanticKernelCookBook/blob/main/docs/en/05.Embeddings.md)| Building RAG applications is the most commonly used LLM solution at this stage. It is very convenient to build RAG applications through Semantic Kernel This session will tell you how to use Semantic Kernel Embeddings | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/dotNET/05/EmbeddingsWithSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/python/05/EmbeddingsWithSK.ipynb)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/blob/main/notebooks/java/05/EmbeddingsWithSK.ipynb)</center> |
19
-
| HandsOnLab | Through three hands on labs projects, let everyone truly understand the application of Semantic Kernel | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/tree/main/workshop/dotNET)</center> | <center>[Click](https://github.com/microsoft/SemanticKernelCookBook/tree/main/workshop/python)</center> |<center>[Click](https://github.com/microsoft/SemanticKernelCookBook/tree/main/workshop/java)</center>|
13
+
|[Getting started with LLM](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/00.IntroduceLLM.md)| Begin to know LLM, including OpenAI, Azure OpenAI Service and LLM on Hugging face ||||
14
+
|[Using Azure OpenAI Service With SDK](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/01.UsingAzureOpenAIServiceWithSDK.md)| Learn how to use Azure OpenAI Service with SDK | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/dotNET/01/dotNETSDKAOAIDemo.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/python/01/PythonSDKAOAIDemo.ipynb)</center> |<center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/java/01/JavaSDKAOAIDemo.ipynb)</center> |
15
+
|[Foundations of Semantic Kernel](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/02.IntroduceSemanticKernel.md)| What is Semantic Kernel? What are its advantages and disadvantages? Semantic Kernel related concepts, etc. | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/dotNET/02/LearnSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/python/02/LearnSK.ipynb)</center> |<center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/java/02/LearnSK.ipynb)</center> |
16
+
|[The skills of LLM - Plugins](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/03.Plugins.md)| We know that communicating with LLM requires the use of prompt engineering? For enterprise applications, there are many business-oriented prompt engineering. In Semantic Kernel we call it Plugins. In this session we will introduce how to use Semantic Kernel Plugins and how to define your own Plugins | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/dotNET/03/PluginWithSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/python/03/PluginWithSK.ipynb)</center> |<center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/java/03/PluginWithSK.ipynb)</center> |
17
+
|[Planner - Let LLM have planning work](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/04.Planner.md)| Human beings need to complete a job step by step, and the same goes for LLMs. Semantic Kernel has a very powerful task planning capability - Planner, in this session we will explain in detail how to define and use Planner to make your application more intelligent | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/dotNET/04/PlannerWithSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/python/04/PlannerWithSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/java/04/PlannerWithSK.ipynb)</center> |
18
+
|[Embedding Skills](https://github.com/kinfey/SemanticKernelCookBook/blob/main/docs/en/05.Embeddings.md)| Building RAG applications is the most commonly used LLM solution at this stage. It is very convenient to build RAG applications through Semantic Kernel This session will tell you how to use Semantic Kernel Embeddings | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/dotNET/05/EmbeddingsWithSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/python/05/EmbeddingsWithSK.ipynb)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/blob/main/notebooks/java/05/EmbeddingsWithSK.ipynb)</center> |
19
+
| HandsOnLab | Through three hands on labs projects, let everyone truly understand the application of Semantic Kernel | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/tree/main/workshop/dotNET)</center> | <center>[Click](https://github.com/kinfey/SemanticKernelCookBook/tree/main/workshop/python)</center> |[Click](https://github.com/kinfey/SemanticKernelCookBook/tree/main/workshop/java)|
0 commit comments