wiki_get
Retrieve structured Wikipedia entries by specifying the article title and language. Enhances local LLMs with accurate, accessible information directly from Wikipedia.
Instructions
Alias of wiki.get
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"lang": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}