diff --git a/src/Config.zig b/src/Config.zig index 41f80994..7861422d 100644 --- a/src/Config.zig +++ b/src/Config.zig @@ -131,7 +131,7 @@ pub fn httpMaxResponseSize(self: *const Config) ?usize { pub fn wsMaxConcurrent(self: *const Config) u8 { return switch (self.mode) { - inline .serve, .fetch, .mcp => |opts| opts.common.ws_max_concurrent orelse 8, + inline .serve, .fetch, .mcp, .agent => |opts| opts.common.ws_max_concurrent orelse 8, else => unreachable, }; }