dramaling-vocab-learning/backend/DramaLing.Api/appsettings.json

31 lines
741 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information",
"Microsoft.EntityFrameworkCore": "Information",
"DramaLing.Api": "Debug",
"System": "Information",
"Microsoft": "Information"
},
"Console": {
"IncludeScopes": true,
"LogLevel": {
"Default": "Debug"
}
}
},
"AllowedHosts": "*",
"Frontend": {
"Urls": ["http://localhost:3000", "http://localhost:3001"]
},
"Gemini": {
"ApiKey": "",
"TimeoutSeconds": 30,
"MaxRetries": 3,
"MaxOutputTokens": 2000,
"Temperature": 0.7,
"Model": "gemini-1.5-flash",
"BaseUrl": "https://generativelanguage.googleapis.com"
}
}