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

# Cognigy.AI

> Welcome to the Cognigy documentation

<div className="hero-container">
  <div className="hero-content">
    Cognigy.AI is a platform designed for large-scale enterprises to create, deploy, and manage chat and voice AI Agents.

    <p>
      The platform leverages advanced NLU technology and LLMs to develop conversational interfaces that can accurately understand and interpret user queries.
    </p>

    <p>
      Cognigy.AI provides a seamless and intuitive user experience that can be deployed across various communication channels such as websites, mobile apps, and messaging platforms.
    </p>
  </div>

  <div style={{ position: "relative", width: "fit-content", margin: "0 auto" }}>
    <video
      id="video-light"
      width="200"
      height="200"
      className="block dark:hidden"
      style={{
    margin: "0 auto",
    borderRadius: "var(--rounded-xl, .75rem)",
    borderBottom: "1px solid lightgray",
    borderRight: "1px solid lightgray",
    borderTop: "0",
    borderLeft: "0"
  }}
      autoPlay
      muted
      loop
    >
      <source src="https://docscognigyassets.blob.core.windows.net/assets/AI_Agents_White_BG_1x1_V1_Optimised.mp4" type="video/mp4" />
    </video>

    <video
      id="video-dark"
      width="200"
      height="200"
      className="hidden dark:block"
      style={{
    margin: "0 auto",
    borderRadius: "var(--rounded-xl, .75rem)",
    borderBottom: "1px solid #313437",
    borderRight: "1px solid #313437",
    borderTop: "0",
    borderLeft: "0"
  }}
      autoPlay
      muted
      loop
    >
      <source src="https://docscognigyassets.blob.core.windows.net/assets/AI_Agents_Dark_BG_1x1_V2_Optimised.mp4" type="video/mp4" />
    </video>

    <button
      type="button"
      aria-label="Pause video"
      className="video-pause-btn"
      onClick={(e) => {
  const btn = e.currentTarget;
  const container = btn.parentElement;
  const videos = Array.from(container.querySelectorAll('video'));
  const visibleVideo = videos.find(v => !v.closest('[class*="hidden"]') && v.offsetParent !== null) || videos[0];
  const isPaused = visibleVideo?.paused;
  videos.forEach(v => isPaused ? v.play() : v.pause());
  btn.textContent = isPaused ? '⏸' : '▶';
  btn.setAttribute('aria-label', isPaused ? 'Pause video' : 'Play video');
}}
    >
      ⏸
    </button>
  </div>
</div>

<CardGroup cols={3}>
  <Card title="Overview" icon="book-open" href="/ai/overview/about-cognigy-ai">
    Introduction to Cognigy AI Agents and their capabilities.
  </Card>

  <Card title="Quickstart Guide" icon="rocket" href="/ai/agents/quickstart">
    Step-by-step instructions to set up your AI Agents swiftly.
  </Card>

  <Card title="Build" icon="hammer" href="/ai/agents/develop/projects-and-flows/projects">
    Learn how to construct and customize your AI Agents effectively.
  </Card>

  <Card title="Deploy" icon="cloud-upload" href="/ai/agents/deploy/deploying-your-ai-agents">
    Guidelines for deploying your AI Agents across various platforms.
  </Card>

  <Card title="Test" icon="flask-conical" href="/ai/agents/test/testing-your-ai-agents">
    Methods to test and validate the performance of your AI Agents.
  </Card>

  <Card title="Analyze" icon="chart-line" href="/ai/agents/analyze/overview">
    Tools and techniques to analyze AI Agent interactions and data.
  </Card>

  <Card title="Handover Providers" icon="headset" href="/ai/escalate/handovers">
    Information on integrating human handover providers with AI Agents.
  </Card>

  <Card title="Platform Features" icon="star" href="/ai/platform-features/overview">
    Explore the comprehensive features available on the Cognigy platform.
  </Card>

  <Card title="Administration and Installation" icon="settings" href="/ai/administer/overview">
    Install Cognigy.AI and administer your organizations
  </Card>
</CardGroup>
