mirror of
https://github.com/marcominerva/SqlDatabaseVectorSearch.git
synced 2026-06-20 12:23:10 +00:00
Remove MessageLimit and MessageExpiration properties
The `AppSettings` class in `AppSettings.cs` has been modified to remove the `MessageLimit` and `MessageExpiration` properties. Correspondingly, the `appsettings.json` file has been updated to remove the `MessageLimit` and `MessageExpiration` settings under the `AppSettings` section to maintain consistency.
This commit is contained in:
@@ -10,7 +10,5 @@ public class AppSettings
|
|||||||
|
|
||||||
public int MaxRelevantChunks { get; init; } = 5;
|
public int MaxRelevantChunks { get; init; } = 5;
|
||||||
|
|
||||||
public int MessageLimit { get; init; }
|
|
||||||
|
|
||||||
public TimeSpan MessageExpiration { get; init; }
|
public TimeSpan MessageExpiration { get; init; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
"MaxTokensPerParagraph": 1024,
|
"MaxTokensPerParagraph": 1024,
|
||||||
"OverlapTokens": 100,
|
"OverlapTokens": 100,
|
||||||
"MaxRelevantChunks": 10,
|
"MaxRelevantChunks": 10,
|
||||||
"MessageLimit": 20,
|
|
||||||
"MessageExpiration": "00:05:00"
|
"MessageExpiration": "00:05:00"
|
||||||
},
|
},
|
||||||
"Logging": {
|
"Logging": {
|
||||||
|
|||||||
Reference in New Issue
Block a user