We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933485e commit 9e6c38dCopy full SHA for 9e6c38d
README.md
@@ -63,9 +63,7 @@ string deploymentName = "YOUR_MODEL_NAME";
63
var azureClient = new AzureOpenAIClient(
64
new Uri(azureOpenAIEndpoint),
65
new ApiKeyCredential(azureOpenAIKey));
66
-builder.Services.AddChatClient(config =>
67
- config.Use(azureClient.AsChatClient(deploymentName))
68
-);
+builder.Services.AddChatClient(azureClient.AsChatClient(deploymentName));
69
builder.Services.AddDevExpressAI((config) => {
70
config.RegisterOpenAIAssistants(azureClient, deploymentName);
71
});
0 commit comments