BotSharp/tests/BotSharp.Test.RealtimeVoice/appsettings.json

75 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2025-04-07 04:15:27 +00:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"LlmProviders": [
{
"Provider": "openai",
"Models": [
{
"Id": "gpt-4o",
"Name": "gpt-4o-mini-realtime-preview",
"Version": "2024-12-17",
"ApiKey": "",
"Type": "realtime",
2025-05-14 23:14:01 +00:00
"Cost": {
"TextInputCost": 0.0006,
"CachedTextInputCost": 0.0003,
"AudioInputCost": 0.01,
"CachedAudioInputCost": 0.0003,
"TextOutputCost": 0.0024,
"AudioOutputCost": 0.02
}
2025-04-07 04:15:27 +00:00
}
]
},
{
"Provider": "google-ai",
"Models": [
{
"Id": "gemini-2.0",
2025-04-14 05:24:05 +00:00
"Name": "gemini-2.0-flash-live-001",
2025-04-07 04:15:27 +00:00
"Version": "20240620",
"ApiKey": "",
"Type": "realtime",
2025-05-14 23:14:01 +00:00
"Cost": {
"TextInputCost": 0.0006,
"CachedTextInputCost": 0.0003,
"AudioInputCost": 0.01,
"CachedAudioInputCost": 0.0003,
"TextOutputCost": 0.0024,
"AudioOutputCost": 0.02
}
2025-04-07 04:15:27 +00:00
}
]
}
],
"Database": {
"Default": "FileRepository",
"TablePrefix": "BotSharp",
"BotSharpMongoDb": "",
"FileRepository": "data",
"Assemblies": [ "BotSharp.Core" ]
},
"RealtimeModel": {
"InputAudioFormat": "pcm16",
2025-04-14 15:13:05 +00:00
"OutputAudioFormat": "pcm16",
"MaxResponseOutputTokens": 4096
2025-04-07 04:15:27 +00:00
},
"PluginLoader": {
"Assemblies": [
"BotSharp.Core",
"BotSharp.Core.Realtime",
"BotSharp.Plugin.OpenAI",
"BotSharp.Plugin.GoogleAI"
]
}
}