-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathappsettings.json
38 lines (37 loc) · 994 Bytes
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
},
"Console": {
"LogLevel": {
"Default": "None"
}
}
},
"OpenAIOptions": {
"Source": "OpenAI", // or "AzureOpenAI"
"ChatModelId": "gpt-4",
"TextToSpeechModelId": "tts-1",
"ApiKey": "Your-OpenAI-API-Key"
// Add these settings if you are using AzureOpenAI
// "ChatDeploymentName": "your-chat-deployment-name",
// "Endpoint": "your-endpoint"
},
"MicrosoftTodoOptions": {
"ClientId": "Your-Client-Id",
"TenantId": "Your-Tenant-Id",
"TaskListId": "Your-Task-List-Id",
"NotificationUrl": "Your-Notification-Url"
},
"HueBridgeOptions": {
"IpAddress": "The-IP-Address-of-Your-Hue-Bridge",
"ApiKey": "The-API-Key-of-Your-Hue-Bridge"
},
"BingSearchOptions": {
"ApiKey": "Your-Bing-Search-API-Key",
"Endpoint": "https://api.bing.microsoft.com/"
}
}