wiki_search
Retrieve Wikipedia articles for answers or context by entering a search query, with options to specify the number of results. Enhances LLM responses with accurate, relevant information.
Instructions
Search Wikipedia for articles.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 3,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "wiki_searchArguments",
"type": "object"
}