ChatRAG/appsettings.Production.json
2025-06-22 19:58:43 -03:00

41 lines
987 B
JSON

{
"VectorDatabase": {
"Provider": "Qdrant",
"MongoDB": {
"ConnectionString": "mongodb://admin:c4rn31r0@k3sw2:27017,k3ss1:27017/?authSource=admin",
"DatabaseName": "RAGProjects-dev-pt",
"TextCollectionName": "Texts",
"ProjectCollectionName": "Groups",
"UserDataName": "UserData"
},
"Qdrant": {
"Host": "192.168.0.100",
"Port": 6334,
"CollectionName": "texts-whats",
"GroupsCollectionName": "projects-whats",
"VectorSize": 384,
"Distance": "Cosine",
"HnswM": 16,
"HnswEfConstruct": 200,
"OnDisk": false
},
"Chroma": {
"Host": "localhost",
"Port": 8000,
"CollectionName": "rag_documents"
}
},
"Features": {
"UseQdrant": true,
"UseHierarchicalRAG": true,
"UseConfidenceAwareRAG": true,
"EnableConfidenceCheck": false
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}