Spaces:
Running
Running
File size: 6,702 Bytes
388aa42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | {% extends "layout.html" %}
{% block title %}About - JanSahayak{% endblock %}
{% block content %}
<section class="about-section">
<div class="container">
<div class="about-hero">
<h1>About <span class="gradient-text">JanSahayak</span></h1>
<p class="lead">Multi-Agent Government Intelligence System</p>
</div>
<div class="about-content">
<div class="about-card">
<h2><i class="fas fa-lightbulb"></i> What is JanSahayak?</h2>
<p>
JanSahayak (जन सहायक - "People's Assistant") is an advanced AI-powered system designed to help
Indian citizens discover and access government benefits, schemes, and competitive exam opportunities.
Using state-of-the-art multi-agent architecture, we analyze your profile and provide personalized
recommendations.
</p>
</div>
<div class="about-card">
<h2><i class="fas fa-robot"></i> How It Works</h2>
<div class="process-flow">
<div class="process-step">
<div class="step-number">1</div>
<h3>Profile Extraction</h3>
<p>AI extracts structured information from your input using natural language processing</p>
</div>
<div class="process-step">
<div class="step-number">2</div>
<h3>Intelligent Search</h3>
<p>RAG (Retrieval Augmented Generation) + live web search finds relevant schemes and exams</p>
</div>
<div class="process-step">
<div class="step-number">3</div>
<h3>Personalization</h3>
<p>7 specialized AI agents work together to provide tailored recommendations</p>
</div>
<div class="process-step">
<div class="step-number">4</div>
<h3>Benefit Analysis</h3>
<p>Calculate missed benefits and get actionable insights for future applications</p>
</div>
</div>
</div>
<div class="agents-grid">
<h2 class="text-center"><i class="fas fa-users-cog"></i> Our AI Agents</h2>
<div class="agent-cards">
<div class="agent-card">
<i class="fas fa-user-check"></i>
<h4>Profiling Agent</h4>
<p>Extracts and structures user information for accurate eligibility matching</p>
</div>
<div class="agent-card">
<i class="fas fa-landmark"></i>
<h4>Scheme Agent</h4>
<p>Recommends government schemes based on eligibility criteria</p>
</div>
<div class="agent-card">
<i class="fas fa-graduation-cap"></i>
<h4>Exam Agent</h4>
<p>Suggests competitive exams aligned with your education and interests</p>
</div>
<div class="agent-card">
<i class="fas fa-search"></i>
<h4>Search Agent</h4>
<p>Performs live searches on government websites for latest information</p>
</div>
<div class="agent-card">
<i class="fas fa-database"></i>
<h4>RAG Agent</h4>
<p>Retrieves relevant information from vector database</p>
</div>
<div class="agent-card">
<i class="fas fa-file-pdf"></i>
<h4>Document Agent</h4>
<p>Processes PDFs and images for text extraction</p>
</div>
<div class="agent-card">
<i class="fas fa-calculator"></i>
<h4>Benefit Calculator</h4>
<p>Estimates missed benefits and provides financial insights</p>
</div>
</div>
</div>
<div class="tech-stack">
<h2><i class="fas fa-code"></i> Technology Stack</h2>
<div class="tech-grid">
<div class="tech-item">
<i class="fas fa-brain"></i>
<h4>Groq LLaMA 3</h4>
<p>Fast LLM inference</p>
</div>
<div class="tech-item">
<i class="fas fa-link"></i>
<h4>LangChain</h4>
<p>Agent framework</p>
</div>
<div class="tech-item">
<i class="fas fa-project-diagram"></i>
<h4>LangGraph</h4>
<p>Workflow orchestration</p>
</div>
<div class="tech-item">
<i class="fas fa-database"></i>
<h4>FAISS</h4>
<p>Vector search</p>
</div>
<div class="tech-item">
<i class="fas fa-globe"></i>
<h4>Tavily API</h4>
<p>Live web search</p>
</div>
<div class="tech-item">
<i class="fab fa-python"></i>
<h4>Python</h4>
<p>Backend system</p>
</div>
</div>
</div>
<div class="about-card">
<h2><i class="fas fa-shield-alt"></i> Privacy & Security</h2>
<ul class="feature-list">
<li><i class="fas fa-check"></i> Your data is processed locally</li>
<li><i class="fas fa-check"></i> No personal information is stored permanently</li>
<li><i class="fas fa-check"></i> API calls are secure and encrypted</li>
<li><i class="fas fa-check"></i> Results are saved locally on your system</li>
</ul>
</div>
</div>
</div>
</section>
{% endblock %}
|