analyze_paper_trends
Analyze trends in research papers by examining authors, keywords, timeline, or categories to uncover patterns and insights in academic literature.
Instructions
Analyze trends in a collection of papers.
:param papers: List of papers from search_papers results :param analysis_type: Type of analysis ('authors', 'keywords', 'timeline', 'categories')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | authors | |
papers | Yes |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "authors",
"title": "Analysis Type",
"type": "string"
},
"papers": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Papers",
"type": "array"
}
},
"required": [
"papers"
],
"type": "object"
}