-
-
Notifications
You must be signed in to change notification settings - Fork 529
Working with Multiple Instances
In some cases, you may need to use multiple instances of the OpenAIService. This can be achieved in a variety of ways. This feature is available from version 6.9.0 onwards.
To create multiple instances, start by creating a new class that extends from the OpenAIService. You can name it according to your preference, and there is no limit on the number of such classes you can create. It's important to ensure that each class has a unique setting key.
Below is an example of creating two classes, MyOpenAIService and MyAzureOpenAIService, that extend from OpenAIService:
public class MyOpenAIService : OpenAIService
{
public const string SettingKey = "MyOpenAIService";
[ActivatorUtilitiesConstructor]
public MyOpenAIService(HttpClient httpClient, IOptionsSnapshot<OpenAiOptions> settings) : base(settings.Get(SettingKey),httpClient){}
public MyOpenAIService(OpenAiOptions settings, HttpClient? httpClient = null) : base(settings, httpClient){}
}
public class MyAzureOpenAIService : OpenAIService
{
public const string SettingKey = "MyAzureOpenAIService";
[ActivatorUtilitiesConstructor]
public MyAzureOpenAIService(HttpClient httpClient, IOptionsSnapshot<OpenAiOptions> settings) : base(settings.Get(SettingKey),httpClient){}
public MyAzureOpenAIService(OpenAiOptions settings, HttpClient? httpClient = null) : base(settings, httpClient){}
}
After defining your classes, prepare the dependency injection for them as shown:
serviceCollection.AddOpenAIService<MyOpenAIService>(MyOpenAIService.SettingKey);
serviceCollection.AddOpenAIService<MyAzureOpenAIService >(MyAzureOpenAIService.SettingKey);
You can then use your typed clients as follows:
var sdk = serviceProvider.GetRequiredService<MyOpenAIService>();
Or inject them into a controller like this:
public MyController(MyOpenAIService myOpenAIService, MyAzureOpenAIService myAzureOpenAIService)
{
_myOpenAIService = myOpenAIService;
_myAzureOpenAIService = myAzureOpenAIService;
}
Ensure your settings file has been configured appropriately. Here is an example of what it might look like:
{
"OpenAIServiceOptions": {
"MyOpenAIService": {
"ApiKey": "sk-***Q"
},
"MyAzureOpenAIService": {
"ApiKey": "3**a",
"DeploymentId": "myDeploymentId",
"ResourceName": "myResourceName",
"ProviderType": "Azure"
}
}
}
Configuration Settings Ensure your settings file has been configured appropriately. Here is an example of what it might look like: