logical_fallacy_detector
Analyze text to detect and categorize logical fallacies with confidence scores, descriptions, and before/after examples. Returns a markdown report grouped by category with severity assessment.
Instructions
Detect and name logical fallacies in text via pattern matching, each with a confidence score, description, and before/after examples. Returns a markdown report grouped by category with an overall severity assessment. Use this to flag specific fallacies; for a full argument assessment use logical_argument_analyzer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text to analyze for logical fallacies | |
| categories | No | Fallacy categories to include: 'informal', 'formal', 'relevance', 'ambiguity', or 'all' (default ['all'] = every category). | |
| includeExamples | No | Include fallacious vs. improved example phrasings (default true). | |
| confidenceThreshold | No | Minimum confidence level to report a fallacy | |
| includeExplanations | No | Include a description of each detected fallacy (default true). |