analyze_browser_history
Analyze browser history to identify patterns, categorize domains, and generate reports. Choose analysis depth: quick summary, basic, or comprehensive. Customize time period and enable fast mode for quicker processing.
Instructions
Step 3: Analyze browser history with different levels of detail.
This is the main analysis tool that consolidates all analysis options.
Args:
time_period_in_days: Number of days of history to analyze (default: 7)
analysis_type: Type of analysis to perform:
- "quick_summary": Basic stats only (fastest)
- "basic": Domain analysis and categorization (not yet implemented)
- "comprehensive": Full analysis with sessions and insights (default)
fast_mode: If True, limits analysis for faster processing (default: True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | comprehensive | |
fast_mode | No | ||
time_period_in_days | No |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "comprehensive",
"title": "Analysis Type",
"type": "string"
},
"fast_mode": {
"default": true,
"title": "Fast Mode",
"type": "boolean"
},
"time_period_in_days": {
"default": 7,
"title": "Time Period In Days",
"type": "integer"
}
},
"title": "analyze_browser_historyArguments",
"type": "object"
}