An AI-powered fullstack web application that can read entire webpages and answer user questions about their content. Built with React for the frontend, Express.js for the backend, and Google’s AI Studio for natural language processing.
This app uses RAG (Retrieval-Augmented Generation) for handling large/multiple webpages, function calling for reliable task execution, and structured outputs for extracting clean, machine-readable data.
https://readingassist.netlify.app/
- Extracts and processes text from webpages
- AI-powered Q&A based on page content
- Interactive chat interface for clarifying doubts
- RAG-powered knowledge retrieval across long or multiple webpages
- Function calling for reliable backend task execution
- Structured outputs for extracting clean JSON data (tables, product info, metadata, etc.)
- Fullstack setup with React + Express
- Extensible architecture for future enhancements
- Frontend: React + Vite (or CRA)
- Backend: Express.js (Node.js)
- AI API: Google AI Studio (Generative AI API)
- Vector DB (for RAG): Pinecone / Weaviate / Qdrant / pgvector
- Optional: Chrome Extension integration
Ask a question about the webpage content. Request body:
{
"url": "https://example.com",
"question": "What is this page about?"
}Response:
{
"answer": "This page explains..."
}- Ask Across Multiple Pages → Query knowledge across multiple URLs or documents.
- Contextual Summaries → Generate section-wise summaries (FAQ, pricing, reviews, etc.).
- Comparative Q&A → Compare content between different websites.
- Persistent Knowledge Base → Save and query previously visited webpages.
- URL Fetching → AI can call
fetchWebpage(url)to pull webpage content. - Highlight & Answer → Users click text, AI calls
highlightSection(text)to explain. - Search Within Page → AI calls
findInPage(query, content)for precise answers. - Fact Verification → AI calls
checkFact(statement)before answering.
Sometimes you need clean, machine-readable answers instead of plain text. This app supports structured outputs such as JSON:
- Product Extraction → Extract
{ name, price, rating }from an e-commerce page - Metadata Extraction → Get
{ title, author, publishDate }from articles/blogs - Table Conversion → Convert raw page tables into structured JSON arrays
- Key-Value Summaries → Return FAQs or policy documents as structured fields
Example:
{
"products": [
{ "name": "Wireless Mouse", "price": "$19.99", "rating": 4.5 },
{ "name": "Mechanical Keyboard", "price": "$89.99", "rating": 4.7 }
]
}- Chrome extension for real-time Q&A on any page
- Support for multiple document formats (PDF, Word, etc.)
- Chat memory with RAG for persistent sessions
- Export structured data directly as CSV/Excel