Skip to content

Commit 8bdc209

Browse files
committed
2 parents 914d710 + 5cd640f commit 8bdc209

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ Files to Review:
4444

4545
#### Register AI Services
4646

47+
>[!NOTE]
48+
> The availability of Azure Open AI Assistants depends on region. For additional guidance in this regard, refer to the following document: [Azure OpenAI Service models -- Assistants (Preview)](https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions#assistants-preview).
49+
4750
Register AI services in your application. Add the following code to the _Program.cs_ file:
4851

4952
```cs
@@ -63,9 +66,8 @@ builder.Services.AddDevExpressAI(config =>
6366
config.RegisterOpenAIAssistants(azureOpenAIClient, EnvSettings.DeploymentName);
6467
});
6568
```
66-
67-
>[!NOTE]
68-
> The availability of Azure Open AI Assistants depends on region. For additional guidance in this regard, refer to the following document: [Azure OpenAI Service models -- Assistants (Preview)](https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions#assistants-preview).
69+
> [!Important]
70+
> We use version **9.0.0-preview.9.24556.5** of the _Microsoft.Extensions.AI.*_ libraries in our source code. We do not guarantee compatibility or correct operation with higher versions.
6971
7072
Files to Review:
7173
- [Program.cs](./CS/ReportingApp/Program.cs)
@@ -74,7 +76,7 @@ Files to Review:
7476

7577
On the server side, the `AIAssistantProvider` service manages assistants. An `IAIAssistantFactory` instance creates assistants with keys specified in previous steps.
7678

77-
```
79+
```cs
7880
public interface IAIAssistantProvider {
7981
IAIAssistant GetAssistant(string assistantName);
8082
Task<string> CreateAssistant(AssistantType assistantType, Stream data);

0 commit comments

Comments
 (0)