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
@@ -15,5 +15,6 @@ public class ListConfigEntityConfiguration : IEntityTypeConfiguration<ListConfig
builder.Property(c => c.Model).HasColumnName("model");
builder.Property(c => c.SystemPrompt).HasColumnName("system_prompt");
builder.Property(c => c.AgentPath).HasColumnName("agent_path");
builder.Property(c => c.MaxTurns).HasColumnName("max_turns");
}
}