Resolved warnings regarding redundant switch arms

This commit is contained in:
Thorsten Sommer 2025-02-27 08:42:02 +01:00
parent 0c4b94c527
commit 16e258dc17
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5
3 changed files with 1 additions and 10 deletions

View File

@ -15,19 +15,11 @@ public static class HostExtensions
public static string BaseURL(this Host host) => host switch
{
Host.LM_STUDIO => "/v1/",
Host.LLAMACPP => "/v1/",
Host.OLLAMA => "/v1/",
_ => "/v1/",
};
public static string ChatURL(this Host host) => host switch
{
Host.LM_STUDIO => "chat/completions",
Host.LLAMACPP => "chat/completions",
Host.OLLAMA => "chat/completions",
_ => "chat/completions",
};

View File

@ -134,7 +134,7 @@ public static class RetrievalContentTypeExtensions
ContentType.VIDEO => RetrievalContentType.NOT_SPECIFIED,
ContentType.NONE => RetrievalContentType.NOT_SPECIFIED,
ContentType.UNKNOWN => RetrievalContentType.UNKNOWN,
_ => RetrievalContentType.UNKNOWN,
};
}

View File

@ -62,7 +62,6 @@ public class TemporaryChatService(ILogger<TemporaryChatService> logger, Settings
WorkspaceStorageTemporaryMaintenancePolicy.DELETE_OLDER_THAN_180_DAYS => DateTime.UtcNow - lastWriteTime > TimeSpan.FromDays(180),
WorkspaceStorageTemporaryMaintenancePolicy.DELETE_OLDER_THAN_365_DAYS => DateTime.UtcNow - lastWriteTime > TimeSpan.FromDays(365),
WorkspaceStorageTemporaryMaintenancePolicy.NO_AUTOMATIC_MAINTENANCE => false,
_ => false,
};