Skip to content

Commit 86b7ee5

Browse files
committed
Tune pivot specific terms
1 parent 380e079 commit 86b7ee5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

semantic-kernel/Frameworks/agent/examples/example-assistant-code.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,6 @@ Prior to creating an _Open AI Assistant Agent_, the configuration settings and p
177177

178178
::: zone pivot="programming-language-csharp"
179179

180-
While working in .Net, the _Client Provider_ must also be initialized.
181-
182180
First, simply initialize the `Settings` class referenced in the previous [Configuration](#configuration) section. Use the settings to also create an `OpenAIClientProvider` that will be used for the [Agent Definition](#agent-definition) as well as file-upload.
183181

184182
```csharp

semantic-kernel/Frameworks/agent/examples/example-assistant-search.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ The full example code is provided in the [Final](#final) section. Refer to that
178178

179179
### Setup
180180

181-
Prior to creating a _Open AI Assistant Agent_, the configuration settings, plugins, and _Client Provider_ must be initialized.
181+
Prior to creating a _Open AI Assistant Agent_, the configuration settings and plugins must be initialized.
182182

183183
First initialize settings:
184184

@@ -288,9 +288,12 @@ foreach (string fileName in _fileNames)
288288

289289
### Agent Definition
290290

291-
We are now ready to instantiate an _OpenAI Assistant Agent_ using the _Client Provider_ again. The agent is configured with its target model, _Instructions_, and the _File Search_ tool enabled. Additionally, we explicitly associate the _Vector Store_ with the _File Search_ tool.
291+
We are now ready to instantiate an _OpenAI Assistant Agent_. The agent is configured with its target model, _Instructions_, and the _File Search_ tool enabled. Additionally, we explicitly associate the _Vector Store_ with the _File Search_ tool.
292292

293293
::: zone pivot="programming-language-csharp"
294+
295+
We will utilize the `OpenAIClientProvider` again as part of creating the `OpenAIAssistantAgent`:
296+
294297
```csharp
295298
Console.WriteLine("Defining agent...");
296299
OpenAIAssistantAgent agent =

0 commit comments

Comments
 (0)