Files
SqlDatabaseVectorSearch/SqlDatabaseVectorSearch/Settings/AppSettings.cs
T
Marco Minerva 67c600e9d4 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.
2024-12-10 11:44:20 +01:00

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; }
}