package me.neurodock.plugin.tool; public record ToolResponse(String name, String response) { public static ToolResponse empty(Tool tool) { return new ToolResponse(tool.name(), ""); } public static ToolResponse empty(String toolName) { return new ToolResponse(toolName, ""); } }