Explore VeriTruths, a prototype tool designed to combat online misinformation. Using AI, it analyzes articles for bias, potential inaccuracies, and source credibility. Interact with the demo below to see how it works.
This interactive demo simulates the VeriTruths analysis on a sample article within an iPhone-sized interface. Click through the different sections ("Full Report", "Profile") to explore the features.
Note: This is a non-functional prototype demonstrating the UI/UX concept. Data shown is illustrative.
VeriTruths aims to provide users with a quick yet insightful analysis of online articles directly within their browser. Here's a breakdown of the process and the technologies involved:
When a user navigates to a supported news article page and clicks the VeriTruths Chrome extension icon, the extension's content script activates. It carefully extracts the main article text, title, author information (if available), and publication source from the page's HTML structure (DOM). This extraction is designed to focus on the core content, ignoring sidebars, ads, and comments for a cleaner analysis.
The extracted content, along with metadata like the article URL, is securely sent to the VeriTruths backend API. This backend is built using Python with the Flask framework, chosen for its simplicity and robustness in handling API requests. User privacy is paramount; identifying information like IP addresses is anonymized using hashing and salting techniques before any potential logging or storage for analytics or caching purposes. The backend currently uses SQLite for simplicity during development, with plans to migrate to PostgreSQL for better scalability and concurrent request handling. Deployment is managed via platforms like Render or Vercel (currently hosted on Netlify for the demo frontend).
The core analysis happens within the backend by leveraging powerful Large Language Models (LLMs) through their respective APIs, please note that to prevent hallucinations and bias, alternative databases such as Google Factcheck are utilized:
The backend orchestrates these API calls, sending carefully crafted prompts designed to elicit structured JSON responses containing the bias score, justification, potential misinformation flags with quotes, credibility indicators, and the summary. Error handling and rate limiting are implemented to manage API interactions effectively.
The structured JSON response from the backend is sent back to the Chrome extension's frontend (the UI demonstrated above, built with HTML, CSS, and vanilla JavaScript). The JavaScript code parses this data and dynamically updates the UI elements: setting the width and text of the progress bars, populating the author and source details, listing the key insights, displaying the AI summary, and filling out the detailed sections in the "Full Report" view (including the bias scale, misinformation cards, author metrics, etc.). The interface is designed to present complex information in an easily digestible format within a collapsible side panel or popup.
The project is under continuous development. Future enhancements include refining the AI prompts for greater accuracy, potentially integrating dedicated fact-checking APIs, improving author credibility analysis by cross-referencing publication history, and optimizing the UX/UI based on user feedback. The goal remains to provide a powerful yet user-friendly tool for navigating the modern media landscape. Alternative databases will ensure cross-examination, if an article cannot be confidently analyzed an unknown status will be displayed and feedback is requested.
Beyond combating general misinformation, a specialized version of VeriTruths is envisioned to specifically aid students in their academic research and study processes. This "VeriTruths EDU" pivots the core analysis features towards enhancing academic integrity, critical thinking, and research efficiency.
Watch the demo above to see how VeriTruths EDU could assist students directly within their research workflow.
VeriTruths EDU aims to be an indispensable tool for students navigating the vast landscape of online information for their coursework and research papers. Key proposed features include:
By integrating these features, VeriTruths EDU strives to empower students to conduct more effective, efficient, and critical research, fostering better academic habits and deeper understanding of their subjects.