Update database labels for clarity and change database name to SQLite

This commit is contained in:
Thorsten Sommer 2026-09-17 11:09:01 +02:00
parent bcc1a3b5eb
commit b77f95318b
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 6 additions and 6 deletions

View File

@ -107,10 +107,10 @@ public partial class Information : MSGComponentBase
/// </remarks>
private string DatabaseHeaderText(DatabaseSection section)
{
var (nameLabel, versionLabel) = section.Role switch
var nameLabel = section.Role switch
{
DatabaseRole.VECTOR_STORE => (T("Vector store"), T("Vector store version")),
_ => (T("Local RAG index"), T("Local RAG index version"))
DatabaseRole.VECTOR_STORE => T("Vector database"),
_ => T("Index database"),
};
if (section.Client is null)
@ -124,7 +124,7 @@ public partial class Information : MSGComponentBase
return section.Client.Status switch
{
DatabaseClientStatus.AVAILABLE when !string.IsNullOrWhiteSpace(version) => $"{versionLabel}: {section.Client.Name} v{version}",
DatabaseClientStatus.AVAILABLE when !string.IsNullOrWhiteSpace(version) => $"{nameLabel}: {section.Client.Name} v{version}",
DatabaseClientStatus.AVAILABLE => $"{nameLabel}: {section.Client.Name}",
DatabaseClientStatus.STARTING => $"{nameLabel}: {section.Client.Name} - {T("starting")}",
_ => $"{nameLabel}: {section.Client.Name} - {T("not available")}"

View File

@ -12,7 +12,7 @@ namespace AIStudio.Tools.Databases.IndexStore;
public sealed class SqliteIndexStoreClientImplementation(string name, string databasePath, string basePath, string version) : IndexStoreClient(name, basePath)
{
private const string DATABASE_NAME = "Local RAG Index";
private const string DATABASE_NAME = "SQLite";
private const string DATABASE_FILENAME = "rag-index.sqlite3";
private const int MAX_FTS_QUERY_TERMS = 32;
private const int CHUNK_UPSERT_BATCH_SIZE = 500;