Versions in this module Expand all Collapse all v0 v0.1.0 Dec 14, 2025 Changes in this version + func AllTools() []llm.Tool + func BashTool() (llm.Tool, error) + func FileTools() []llm.Tool + func GlobTool() (llm.Tool, error) + func GrepTool() (llm.Tool, error) + func KnowledgeTools() []llm.Tool + func MustBash() llm.Tool + func MustGlob() llm.Tool + func MustGrep() llm.Tool + func MustRead() llm.Tool + func MustWebFetch() llm.Tool + func MustWebSearch() llm.Tool + func MustWikipedia() llm.Tool + func MustWrite() llm.Tool + func ReadOnlyTools() []llm.Tool + func ReadTool() (llm.Tool, error) + func SystemTools() []llm.Tool + func WebFetchTool() (llm.Tool, error) + func WebSearchTool() (llm.Tool, error) + func WebTools() []llm.Tool + func WikipediaTool() (llm.Tool, error) + func WriteTool() (llm.Tool, error) + type BashInput struct + Command string + Timeout int + WorkDir string + type BashOutput struct + ExitCode int + Stderr string + Stdout string + type GlobInput struct + Path string + Pattern string + type GlobOutput struct + Count int + Files []string + type GrepInput struct + Glob string + MaxMatches int + Path string + Pattern string + type GrepMatch struct + Content string + File string + Line int + type GrepOutput struct + Count int + Matches []GrepMatch + type ReadInput struct + Limit int + Offset int + Path string + type ReadOutput struct + Content string + Lines int + Truncated bool + type SearchResult struct + Snippet string + Title string + URL string + type WebFetchInput struct + Extract string + Timeout int + URL string + type WebFetchOutput struct + Content string + StatusCode int + Title string + URL string + type WebSearchInput struct + MaxResults int + Query string + type WebSearchOutput struct + Abstract string + AbstractURL string + Results []SearchResult + type WikipediaInput struct + Language string + Query string + Summary bool + type WikipediaOutput struct + Content string + Description string + Summary string + Title string + URL string + type WriteInput struct + Content string + Path string + type WriteOutput struct + Bytes int + Path string + Success bool