Files
picoclaw/pkg/tools/hardware/shared.go
T

14 lines
308 B
Go

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)
}