VideoStudy/VideoStudy.API/appsettings.json
2026-02-09 18:31:08 -03:00

22 lines
474 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"LlmSettings": {
"Provider": "Groq",
"Ollama": {
"BaseUrl": "http://192.168.0.150:11434",
"Model": "llama3.1"
},
"Groq": {
"ApiKey": "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",
"Model": "llama-3.3-70b-versatile",
"BaseUrl": "https://api.groq.com/openai/v1"
}
}
}