Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 257 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 257 Bytes

SKSamples

Set Secrets

dotnet user-secrets set "modelId" "gpt-3.5-turbo"
dotnet user-secrets set "apiKey" "... your OpenAI key ..."

OR

Create appsettings.json

{
	"modelId": "gpt-3.5-turbo",
	"apiKey":"... your OpenAI key ..."
}