Resolved warnings regarding redundant switch arms (#302)

This commit is contained in:
Thorsten Sommer 2025-02-27 08:42:51 +01:00 committed by GitHub
parent 0c4b94c527
commit ccac2b04ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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,
};