Search returns the most relevant tools for a free-text query. Prefer using SearchTools and passing an explicit tool list. This function is kept for API compatibility and currently searches an empty tool set.
(query string, options ...SearchOptions)
| 36 | // Prefer using SearchTools and passing an explicit tool list. This function is |
| 37 | // kept for API compatibility and currently searches an empty tool set. |
| 38 | func Search(query string, options ...SearchOptions) ([]SearchResult, error) { |
| 39 | return SearchTools(nil, query, options...) |
| 40 | } |
| 41 | |
| 42 | // SearchTools is like Search, but searches across the provided tool list. |
| 43 | // |
nothing calls this directly
no test coverage detected