@@ -0,0 +1,46 @@
|
||||
{
|
||||
"AllowedHosts": "*",
|
||||
"Serilog": {
|
||||
"MinimumLevel": {
|
||||
"Default": "Information",
|
||||
"Override": {
|
||||
"Microsoft.AspNetCore": "Warning",
|
||||
"System.Net.Http.HttpClient": "Warning"
|
||||
}
|
||||
},
|
||||
"WriteTo": [
|
||||
{ "Name": "Console" }
|
||||
]
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"RagDb": "Server=localhost,1433;Database=MyAiRag;User Id=sa;Password=Your_strong_password123;TrustServerCertificate=True"
|
||||
},
|
||||
"InternalApi": {
|
||||
"ApiKey": "",
|
||||
"RequireApiKey": false
|
||||
},
|
||||
"Rag": {
|
||||
"MaxFileSizeMb": 8,
|
||||
"ChunkSize": 900,
|
||||
"ChunkOverlap": 150,
|
||||
"MaxTextChars": 60000,
|
||||
"DefaultTopK": 20,
|
||||
"MaxTopK": 50,
|
||||
"ClassifyWithAi": false
|
||||
},
|
||||
"Ai": {
|
||||
"Provider": "OpenAI",
|
||||
"OpenAI": {
|
||||
"ApiKey": "",
|
||||
"ChatModel": "gpt-4o-mini",
|
||||
"EmbeddingModel": "text-embedding-3-small",
|
||||
"TimeoutSeconds": 90
|
||||
},
|
||||
"Ollama": {
|
||||
"BaseUrl": "http://localhost:11434",
|
||||
"ChatModel": "llama3.1:8b",
|
||||
"EmbeddingModel": "nomic-embed-text",
|
||||
"TimeoutSeconds": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user