"use client"; const FEATURES = [ { icon: "🧠", iconClass: "feature-icon-orange", title: "Adaptive Query Router", description: "Analyzes query complexity in real-time and routes simple questions to fast baseline RAG while directing multi-hop questions through the knowledge graph.", tag: "Novel", tagColor: "#FF6B00", }, { icon: "📋", iconClass: "feature-icon-blue", title: "Schema-Bounded Extraction", description: "Constrains entity extraction to TigerGraph's schema, eliminating hallucinated node types and ensuring every extracted entity maps to a valid graph vertex.", tag: "Novel", tagColor: "#FF6B00", }, { icon: "🔑", iconClass: "feature-icon-teal", title: "Dual-Level Keywords", description: "Extracts both high-level concepts and low-level entities from queries, enabling graph traversal at multiple granularity levels for richer context.", tag: "Novel", tagColor: "#FF6B00", }, { icon: "🔗", iconClass: "feature-icon-amber", title: "Graph Reasoning Paths", description: "Traces explicit entity→relation→entity chains through TigerGraph, providing human-readable evidence paths that make LLM answers verifiable.", tag: "Novel", tagColor: "#FF6B00", }, { icon: "📊", iconClass: "feature-icon-coral", title: "Real-Time Cost Tracking", description: "Measures tokens, latency, and USD cost per query for both pipelines simultaneously, with interactive projections at scale.", tag: "Novel", tagColor: "#FF6B00", }, { icon: "🌐", iconClass: "feature-icon-blue", title: "12 LLM Providers", description: "Universal LLM layer supporting Claude, GPT-4, Gemini, Llama, Mistral, DeepSeek, Grok, Cohere, and more — swap providers with one parameter.", tag: "Universal", tagColor: "#0072CE", }, ]; export function FeaturesSection() { return (
{/* Header */}
What Makes It Different

Five novel features,
one unified system

Each feature was designed to solve a specific GraphRAG challenge — from query routing to cost optimization.

{/* Feature Grid */}
{FEATURES.map((feature, i) => (
{feature.icon}

{feature.title}

{feature.tag}

{feature.description}

))}
); }