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
+9
View File
@@ -0,0 +1,9 @@
namespace Shared.Models.Settings
{
public class OpenAiSettings
{
public string ApiKey { get; set; } = string.Empty;
public string ChatModel { get; set; } = "gpt-4o-mini";
public int TimeoutSeconds { get; set; } = 90;
}
}