guardian_author_profile
Analyze a Guardian journalist's profile by generating detailed insights based on their articles within specified timeframes, using The Guardian's extensive archives.
Instructions
Generate comprehensive profile analysis for a Guardian journalist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_period | No | Year to analyze (e.g., "2024") or use from_date/to_date | |
author | Yes | Author/journalist name to analyze | |
from_date | No | Start date (YYYY-MM-DD) - alternative to analysis_period | |
to_date | No | End date (YYYY-MM-DD) - alternative to analysis_period |
Input Schema (JSON Schema)
{
"properties": {
"analysis_period": {
"description": "Year to analyze (e.g., \"2024\") or use from_date/to_date",
"type": "string"
},
"author": {
"description": "Author/journalist name to analyze",
"type": "string"
},
"from_date": {
"description": "Start date (YYYY-MM-DD) - alternative to analysis_period",
"type": "string"
},
"to_date": {
"description": "End date (YYYY-MM-DD) - alternative to analysis_period",
"type": "string"
}
},
"required": [
"author"
],
"type": "object"
}