Changes
Build and Push Docker Images / build (push) Failing after 6s

This commit is contained in:
2026-05-06 18:12:40 +03:00
parent b154fe51c3
commit 5db34b9731
22 changed files with 82 additions and 55 deletions
+4 -3
View File
@@ -1,8 +1,9 @@
using Shared.Models.Settings;
namespace CvMatcher.Models.Settings;
public sealed class AiSettings
{
public string Provider { get; set; } = "OpenAI";
public sealed class AiSettings : Shared.Models.Settings.AiSettings
{
public OpenAiSettings OpenAI { get; set; } = new();
public OllamaSettings Ollama { get; set; } = new();
}
@@ -1,7 +0,0 @@
namespace CvMatcher.Models.Settings;
public sealed class InternalApiSettings
{
public string ApiKey { get; set; } = string.Empty;
public bool RequireApiKey { get; set; } = false;
}
@@ -1,8 +0,0 @@
namespace CvMatcher.Models.Settings;
public sealed class OllamaSettings
{
public string BaseUrl { get; set; } = "http://localhost:11434";
public string ChatModel { get; set; } = "llama3.1:8b";
public int TimeoutSeconds { get; set; } = 180;
}
@@ -1,8 +0,0 @@
namespace CvMatcher.Models.Settings;
public sealed class OpenAiSettings
{
public string ApiKey { get; set; } = string.Empty;
public string ChatModel { get; set; } = "gpt-4o-mini";
public int TimeoutSeconds { get; set; } = 90;
}
@@ -7,4 +7,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\shared-models\shared-models.csproj" />
</ItemGroup>
</Project>