docs(worker): clarify SetTaskConfig null-clears-override wording

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-05-30 13:57:59 +02:00
parent c3493a3a74
commit f3f8af4b11

View File

@@ -51,7 +51,7 @@ public sealed class ConfigMcpTools
await _broadcaster.ListUpdated(listId); await _broadcaster.ListUpdated(listId);
} }
[McpServerTool, Description("Set per-task config overrides (model/system prompt/agent path). Pass null to clear a field.")] [McpServerTool, Description("Set per-task config overrides (model/system prompt/agent path). Pass null for any field to clear that override.")]
public async Task SetTaskConfig( public async Task SetTaskConfig(
string taskId, string? model, string? systemPrompt, string? agentPath, CancellationToken cancellationToken) string taskId, string? model, string? systemPrompt, string? agentPath, CancellationToken cancellationToken)
{ {