@@ -101,18 +101,18 @@ Console.WriteLine(output);
101
101
The repository contains also a few C# Jupyter notebooks that demonstrates
102
102
how to get started with the Semantic Kernel.
103
103
104
- See [ here] ( ../samples/ notebooks/dotnet /README.md ) for the full list, with
104
+ See [ here] ( ./ notebooks/README.md ) for the full list, with
105
105
requirements and setup instructions.
106
106
107
- 1 . [ Getting started] ( ../samples/ notebooks//dotnet /00-getting-started.ipynb )
108
- 2 . [ Loading and configuring Semantic Kernel] ( ../samples/ notebooks//dotnet /01-basic-loading-the-kernel.ipynb )
109
- 3 . [ Running AI prompts from file] ( ../samples/ notebooks//dotnet /02-running-prompts-from-file.ipynb )
110
- 4 . [ Creating Semantic Functions at runtime (i.e. inline functions)] ( ../samples/ notebooks//dotnet /03-semantic-function-inline.ipynb )
111
- 5 . [ Using Context Variables to Build a Chat Experience] ( ../samples/ notebooks//dotnet /04-context-variables-chat.ipynb )
112
- 6 . [ Creating and Executing Plans] ( ../samples/ notebooks//dotnet /05-using-the-planner.ipynb )
113
- 7 . [ Building Memory with Embeddings] ( ../samples/ notebooks//dotnet /06-memory-and-embeddings.ipynb )
114
- 8 . [ Creating images with DALL-E 2] ( ../samples/ notebooks//dotnet /07-DALL-E-2.ipynb )
115
- 9 . [ Chatting with ChatGPT and Images] ( ../samples/ notebooks//dotnet /08-chatGPT-with-DALL-E-2.ipynb )
107
+ 1 . [ Getting started] ( ./ notebooks/00-getting-started.ipynb )
108
+ 2 . [ Loading and configuring Semantic Kernel] ( ./ notebooks/01-basic-loading-the-kernel.ipynb )
109
+ 3 . [ Running AI prompts from file] ( ./ notebooks/02-running-prompts-from-file.ipynb )
110
+ 4 . [ Creating Semantic Functions at runtime (i.e. inline functions)] ( ./ notebooks/03-semantic-function-inline.ipynb )
111
+ 5 . [ Using Context Variables to Build a Chat Experience] ( ./ notebooks/04-context-variables-chat.ipynb )
112
+ 6 . [ Creating and Executing Plans] ( ./ notebooks/05-using-the-planner.ipynb )
113
+ 7 . [ Building Memory with Embeddings] ( ./ notebooks/06-memory-and-embeddings.ipynb )
114
+ 8 . [ Creating images with DALL-E 2] ( ./ notebooks/07-DALL-E-2.ipynb )
115
+ 9 . [ Chatting with ChatGPT and Images] ( ./ notebooks/08-chatGPT-with-DALL-E-2.ipynb )
116
116
117
117
# Nuget packages
118
118
@@ -121,20 +121,20 @@ more features, such as connectors to services and Skills to perform specific act
121
121
Unless you need to optimize which packages to include in your app, you will usually
122
122
start by installing this meta-package first:
123
123
124
- * ** Microsoft.SemanticKernel**
124
+ - ** Microsoft.SemanticKernel**
125
125
126
126
This meta package includes core packages and OpenAI connectors, allowing to run
127
127
most samples and build apps with OpenAI and Azure OpenAI.
128
128
129
129
Packages included in ** Microsoft.SemanticKernel** :
130
130
131
131
1 . ** Microsoft.SemanticKernel.Abstractions** : contains common interfaces and classes
132
- used by the core and other SK components.
132
+ used by the core and other SK components.
133
133
1 . ** Microsoft.SemanticKernel.Core** : contains the core logic of SK, such as prompt
134
- engineering, semantic memory and semantic functions definition and orchestration.
134
+ engineering, semantic memory and semantic functions definition and orchestration.
135
135
1 . ** Microsoft.SemanticKernel.Connectors.AI.OpenAI** : connectors to OpenAI and Azure
136
- OpenAI, allowing to run semantic functions, chats, image generation with GPT3,
137
- GPT3.5, GPT4, DALL-E2. Includes also GPT tokenizers.
136
+ OpenAI, allowing to run semantic functions, chats, image generation with GPT3,
137
+ GPT3.5, GPT4, DALL-E2. Includes also GPT tokenizers.
138
138
139
139
Other SK packages available at nuget.org:
140
140
@@ -148,4 +148,4 @@ Other SK packages available at nuget.org:
148
148
tenant data, schedule meetings, send emails, etc.
149
149
5 . ** Microsoft.SemanticKernel.Skills.OpenAPI** : OpenAPI skill.
150
150
6 . ** Microsoft.SemanticKernel.Skills.Web** : Web Skill: search the web, download
151
- files, etc.
151
+ files, etc.
0 commit comments