package hardwaretools import toolshared "github.com/sipeed/picoclaw/pkg/tools/shared" type ToolResult = toolshared.ToolResult func ErrorResult(message string) *ToolResult { return toolshared.ErrorResult(message) } func SilentResult(forLLM string) *ToolResult { return toolshared.SilentResult(forLLM) }