AI Agents for Trustworthy Fact-Checking: A Reliability Evaluation Approach for Misinformation Detection
- Abstract
- Application Modules
- Methodology & Formulas
- System Architecture
- Technology Stack
- Getting Started
- References
Misinformation spreads quickly on the internet, and AI agents that verify news sometimes produce incorrect or misleading results. MISAI introduces an AI agent designed to evaluate the reliability of other AI agents used for fact-checking news and information. The evaluation agent tests these fact-checking agents using various scenarios, such as identifying false or fabricated facts, verifying citations, and resisting misleading or biased questions. By applying clear metrics and formulas, including Reliability Rate and Hallucination Rate, the system calculates an overall score to measure each agent's trustworthiness. This meta-verification process helps ensure that only dependable AI agents provide verified information to the public.
The Gateway to Truth The application opens with an immersive Intro Screen featuring 3D visualizations powered by Spline, setting the stage for a premium user experience.
- Approach Solution: A dedicated dashboard that visualizes the core mathematical models driving MISAI.
- Real-Time Graphs: Interactive charts displaying CARS (Reliability), CACE (Consistency), and Custom Loss metrics, allowing users to understand the theoretical backbone of the system before diving into tools.
Real-Time Multi-Model Fact Checking MisBot is not just a chatbot; it's an intelligent consensus engine.
- Multi-Model Aggregation: Simultaneously queries Gemini, Groq (Llama 3, Mixtral), and OpenAI (GPT-4o).
- Live Grounding: Cross-references every claim with live data from Google Search (SERP) and Wikipedia to prevent hallucinations.
- Consolidated Insights: Synthesizes a single, most reliable answer, highlighting the "Best Model" based on the CARS score.
Pixel-Level Manipulation Detection A powerful tool designed to uncover the invisible traces of editing and AI generation.
- Analysis Workflow: Upload an image to scan for artifacts consistent with GANs or diffusion models.
- Detailed Reporting: Provides a confidence score and highlights specific regions of interest (ROI) that show signs of tampering.
Frame-by-Frame Authenticity Verification Combats the rising threat of deepfake videos.
- Temporal Analysis: Scans video content for inconsistencies in facial expressions, lighting, and audio-visual synchronization.
- Deepfake Detection: Identifies swapped faces, synthetic audio tracks, and spliced frames with high precision.
The Meta-Evaluation Arena A dedicated interface for benchmarking different AI models against known misinformation scenarios.
- Performance Metrics: Visualizes hallucination tendencies, factual accuracy, and refusal rates for various models.
- Leaderboard: Ranks models based on their CARS and CACE scores, helping users choose the most trustworthy engine.
The CARS metric evaluates an AI model
Where
Component Definitions:
-
Factual Accuracy (
$A_i$ ): Ratio of correct facts to total facts. $$ A_i = \frac{1}{n} \sum_{k=1}^n \frac{\text{correct facts}_k}{\text{total facts}_k} $$ -
Reasoning Depth (
$R_i$ ): Average semantic complexity of explanations. $$ R_i = \frac{1}{n} \sum_{k=1}^n \log(1 + \text{conceptual nodes}) $$ -
Consistency (
$C_i$ ): Statistical stability of answers across multiple queries. $$ C_i = \frac{1}{1 + \text{Var}(S)} $$ -
Source Verification (
$V_i$ ): Overlap ratio with validated sources. $$ V_i = \frac{\text{verified statements}}{\text{total statements}} $$
CACE measures the consensus level among different AI models. A low score indicates high agreement, while a high score signals disagreement or hallucination risks.
Where
For the neural network component, we utilize a custom loss function that includes a balanced-usage penalty:
- First term: Normal squared prediction error.
- Second term: Balanced-usage penalty for neuron weights.
-
$\lambda$ : Strength of the penalty.
MISAI platform is built on a robust, modular architecture designed for scalability and real-time processing.
- User Interface (Frontend): Built with React and Vite, featuring a responsive design and interactive visualizations using Recharts and Spline.
- API Gateway (Backend): A high-performance FastAPI server handles requests, manages sessions, and orchestrates AI model interactions.
- Intelligence Layer:
- LLM Aggregator: Connects to Gemini, Groq, and OpenAI APIs.
- Grounding Engine: Fetches real-time data from SERP and Wikipedia.
- Scoring Engine: Computes CARS and CACE scores using NumPy.
- Media Analysis Engine: Specialized modules for image and video deepfake detection.
- Framework: React with Vite
- Visualization: Recharts for dynamic score graphs
- 3D Elements: Spline (via
@splinetool/react-spline) - Styling: CSS3 with responsive design
- API Framework: FastAPI (Python)
- AI Integration: Google Gemini, Groq, OpenAI
- Utilities:
httpx(Async HTTP),numpy(Math),python-dotenv(Config)
- Node.js (v14+)
- Python (3.9+)
cd Backend
pip install -r requirements.txtCreate a .env file in Backend/ with your API keys:
GEMINI_API_KEY=your_key_here
GROQ_API_KEY=your_key_here
OPENAI_API_KEY=your_key_here
SERP_API_KEY=your_key_here
REALITY_API_KEY=your_key_here
REALITY_BASE=https://api.reality.comStart the backend server:
uvicorn main:app --reloadcd Frontend
npm installCreate a .env file in Frontend/:
VITE_HOST_URL=http://localhost:8000Start the development server:
npm run devThe platform is designed for media organizations, government bodies, and social media platforms. It operates on a hybrid model including subscription tiers and API usage fees. Future extensions include multimodal misinformation evaluation, real-time monitoring, and blockchain-backed audit mechanisms.
- Z. Cui et al., "Toward Verifiable Misinformation Detection: A Multi-Tool LLM Agent," arXiv:2508.03092, 2025.
- "Hallucination to Truth: A Review of Fact-Checking and Factuality in LLMs," arXiv:2508.03860, 2025.
- "Synthetic Lies: Understanding AI-Generated Misinformation," CHI '23.
- "Truth Sleuth & Trend Bender AI Agents to fact-check YouTube Videos," arXiv:2507.10577, 2025.
- J. A. S. de Cerqueira et al., "Can We Trust AI Agents? A Case Study of an LLM-Based Ethical Review System," arXiv:2411.08881, 2024.
Date: November 28, 2025