extract_key_facts
Extract key facts from a Wikipedia article, optionally filtered by a specific topic, to quickly obtain essential information for research or analysis.
Instructions
Extract key facts from a Wikipedia article, optionally focused on a topic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
title | Yes | ||
topic_within_article | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 5,
"title": "Count",
"type": "integer"
},
"title": {
"title": "Title",
"type": "string"
},
"topic_within_article": {
"default": "",
"title": "Topic Within Article",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}