diff --git a/app/MindWork AI Studio/Pages/Information.razor.cs b/app/MindWork AI Studio/Pages/Information.razor.cs index 6ae81bab..7e3ae8d6 100644 --- a/app/MindWork AI Studio/Pages/Information.razor.cs +++ b/app/MindWork AI Studio/Pages/Information.razor.cs @@ -107,10 +107,10 @@ public partial class Information : MSGComponentBase /// 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")}" diff --git a/app/MindWork AI Studio/Tools/Databases/IndexStore/SqliteIndexStoreClientImplementation.cs b/app/MindWork AI Studio/Tools/Databases/IndexStore/SqliteIndexStoreClientImplementation.cs index 7968c3d2..2d4b7084 100644 --- a/app/MindWork AI Studio/Tools/Databases/IndexStore/SqliteIndexStoreClientImplementation.cs +++ b/app/MindWork AI Studio/Tools/Databases/IndexStore/SqliteIndexStoreClientImplementation.cs @@ -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; @@ -658,4 +658,4 @@ public sealed class SqliteIndexStoreClientImplementation(string name, string dat client.SetLogger(databaseClientLogger); return client; } -} +} \ No newline at end of file