41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# "House Automation" example illustrating how to use Semantic Kernel with dependency injection
|
|
|
|
This example demonstrates a few dependency injection patterns that can be used with Semantic Kernel.
|
|
|
|
|
|
## Configuring Secrets
|
|
|
|
The example require credentials to access OpenAI or Azure OpenAI.
|
|
|
|
If you have set up those credentials as secrets within Secret Manager or through environment variables for other samples from the solution in which this project is found, they will be re-used.
|
|
|
|
### To set your secrets with Secret Manager:
|
|
|
|
```
|
|
cd dotnet/samples/Demos/HouseAutomation
|
|
|
|
dotnet user-secrets init
|
|
|
|
dotnet user-secrets set "OpenAI:ChatModelId" "..."
|
|
dotnet user-secrets set "OpenAI:ApiKey" "..."
|
|
|
|
dotnet user-secrets set "AzureOpenAI:ChatDeploymentName" "..."
|
|
dotnet user-secrets set "AzureOpenAI:Endpoint" "https://... .openai.azure.com/"
|
|
dotnet user-secrets set "AzureOpenAI:ApiKey" "..."
|
|
```
|
|
|
|
### To set your secrets with environment variables
|
|
|
|
Use these names:
|
|
|
|
```
|
|
# OpenAI
|
|
OpenAI__ChatModelId
|
|
OpenAI__ApiKey
|
|
|
|
# Azure OpenAI
|
|
AzureOpenAI__ChatDeploymentName
|
|
AzureOpenAI__Endpoint
|
|
AzureOpenAI__ApiKey
|
|
```
|