mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
14 lines
308 B
Go
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)
|
|
}
|