mirror of
https://github.com/marcominerva/SqlDatabaseVectorSearch.git
synced 2026-06-20 12:23:10 +00:00
67c600e9d4
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.
15 lines
352 B
C#
15 lines
352 B
C#
namespace SqlDatabaseVectorSearch.Settings;
|
|
|
|
public class AppSettings
|
|
{
|
|
public int MaxTokensPerLine { get; init; } = 300;
|
|
|
|
public int MaxTokensPerParagraph { get; init; } = 1024;
|
|
|
|
public int OverlapTokens { get; init; } = 100;
|
|
|
|
public int MaxRelevantChunks { get; init; } = 5;
|
|
|
|
public TimeSpan MessageExpiration { get; init; }
|
|
}
|