diff --git a/src/Server/Program.cs b/src/Server/Program.cs index fe97a97..98cf3fd 100644 --- a/src/Server/Program.cs +++ b/src/Server/Program.cs @@ -20,7 +20,7 @@ builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddHealthChecks() .AddCheck("DatabaseHealthCheck") - .AddCheck("AIProviderHealthChecck"); + .AddCheck("AIProviderHealthCheck"); builder.Services.AddElmah(Options => { diff --git a/src/Server/SearchdomainManager.cs b/src/Server/SearchdomainManager.cs index 0bdbb2a..7e7baf9 100644 --- a/src/Server/SearchdomainManager.cs +++ b/src/Server/SearchdomainManager.cs @@ -11,7 +11,6 @@ public class SearchdomainManager private readonly ILogger _logger; private readonly IConfiguration _config; public readonly AIProvider aIProvider; - private readonly string ollamaURL; private readonly string connectionString; private MySqlConnection connection; public SQLHelper helper;