feat(data): add nullable max_turns override to list_config and tasks

This commit is contained in:
mika kuns
2026-06-04 12:15:15 +02:00
parent b63c78c234
commit 97e38fb480
7 changed files with 740 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ public sealed class ListConfigEntity
public string? Model { get; set; }
public string? SystemPrompt { get; set; }
public string? AgentPath { get; set; }
public int? MaxTurns { get; set; }
// Navigation property
public ListEntity List { get; set; } = null!;