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

64 lines
1.3 KiB
JSON
Raw 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",
"MultiModal": true,
"PromptCost": 0.0025,
"CompletionCost": 0.01
}
]
},
{
"Provider": "google-ai",
"Models": [
{
"Id": "gemini-2.0",
"Name": "gemini-2.0-flash-exp",
"Version": "20240620",
"ApiKey": "",
"Type": "realtime",
"MultiModal": true,
"PromptCost": 0.003,
"CompletionCost": 0.015
}
]
}
],
"Database": {
"Default": "FileRepository",
"TablePrefix": "BotSharp",
"BotSharpMongoDb": "",
"FileRepository": "data",
"Assemblies": [ "BotSharp.Core" ]
},
"RealtimeModel": {
"InputAudioFormat": "pcm16",
"OutputAudioFormat": "pcm16"
},
"PluginLoader": {
"Assemblies": [
"BotSharp.Core",
"BotSharp.Core.Realtime",
"BotSharp.Plugin.OpenAI",
"BotSharp.Plugin.GoogleAI"
]
}
}