> ## Documentation Index
> Fetch the complete documentation index at: https://docs.topsort.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Data Genie

> AI-powered conversational analytics for marketplace admins to get insights and data visualizations

export const ChangelogActions = () => {
  return <>
      <style>{`
        .changelog-actions {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-top: 2rem;
          padding-top: 1.5rem;
          border-top: 1px solid #e5e7eb;
        }
        
        [data-theme="dark"] .changelog-actions {
          border-top-color: #374151;
        }
        
        .changelog-btn {
          display: inline-flex;
          align-items: center;
          gap: 6px;
          padding: 8px 16px;
          border-radius: 9999px;
          border: 1px solid #d1d5db;
          background: transparent;
          color: #6b7280;
          font-size: 14px;
          cursor: pointer;
          transition: all 0.2s ease;
        }
        
        .changelog-btn:hover {
          border-color: #9ca3af;
          background: #f9fafb;
        }
        
        [data-theme="dark"] .changelog-btn {
          border-color: #4b5563;
          color: #9ca3af;
        }
        
        [data-theme="dark"] .changelog-btn:hover {
          border-color: #6b7280;
          background: #1f2937;
        }
      `}</style>
      <div className="changelog-actions">
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    btn.innerHTML = "❤️ Like";
    btn.style.borderColor = "#ec4899";
  }}>
          🤍 Like
        </button>
        <button className="changelog-btn" onClick={() => {
    const btn = event.target.closest("button");
    navigator.clipboard.writeText(window.location.href);
    const originalContent = btn.innerHTML;
    btn.innerHTML = "✓ Copied";
    btn.style.borderColor = "#22c55e";
    btn.style.color = "#22c55e";
    setTimeout(() => {
      btn.innerHTML = originalContent;
      btn.style.borderColor = "";
      btn.style.color = "";
    }, 2000);
  }}>
          ↗ Share
        </button>
      </div>
    </>;
};

<div style={{ display: "flex", gap: "8px", flexWrap: "wrap", marginBottom: "16px" }}>
  <Badge color="gray" size="sm" icon="calendar">September 17, 2025</Badge>
  <Badge color="blue" size="sm" icon="rectangle-ad">Ad Platform</Badge>
  <Badge color="green" size="sm" icon="sparkles">New Feature</Badge>
</div>

**Data Genie** brings AI-powered conversational analytics to marketplace admins, providing instant insights about campaign performance, marketplace intelligence, and business operations through natural language queries. Ask questions and get answers.

## Key Capabilities

**Campaign Analysis**:
Performance diagnostics, KPI tracking, bid analysis, and competitor
benchmarking

**Marketplace Intelligence**:
Daily behavior summaries, auction metrics, attribution diagnostics, and
configuration insights

**Smart Visualizations**:
Auto-generated charts from data queries including line, bar, and pie charts

## Natural Language Interaction

Simply ask Data Genie questions in plain language:

* **Campaign Diagnostics** - "Why isn't campaign ABC-123 spending?"
* **Performance Trends** - "Show me \[Marketplace] CTR trends this week"
* **Optimization** - "How do I optimize for better ROAS?"

### Query Examples

```
Q: What was the CTR of the marketplace over the past week?
```

## Access & Availability

* **Location** - Available in the sidebar
* **Permissions** - Restricted to admin users only
* **Response Types** - HTML-formatted answers with embedded visualizations

### Use Cases

* **Performance Troubleshooting** - Quickly identify why campaigns aren't spending or performing
* **Strategic Planning** - Get forecasts and insights for new brand opportunities
* **Operational Efficiency** - Monitor budget utilization and campaign health across portfolios
* **Competitive Analysis** - Benchmark performance against marketplace trends

***

Data Genie is now available for admin users. Experience the power of conversational analytics to unlock deeper insights into your marketplace performance and make data-driven decisions with speed and clarity.

<ChangelogActions />
