mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-22 17:35:24 -04:00
11 lines
228 B
Go
11 lines
228 B
Go
package tools
|
|
|
|
import "context"
|
|
|
|
// Tool is a tool for the llm agent to interact with different applications.
|
|
type Tool interface {
|
|
Name() string
|
|
Description() string
|
|
Call(ctx context.Context, input string) (string, error)
|
|
}
|