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

# Introduction

> Discover how to deploy, customize, and scale Lucidworks products for AI-powered search and insights across B2B, B2C, knowledge management, customer support, and more.

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

<Card title="Contact Lucidworks" icon="messages" href="https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta" arrow="true" cta="Get started today.">
  Reach out with your current search challenges and what you hope to achieve with a search and discovery solution.
</Card>

<LwTemplate />

## Discover

Get started quickly with product-specific guides and tools for building intelligent search, analytics, and AI applications.

<CardGroup cols={2}>
  <Card title="Lucidworks AI" icon="stars" href="/docs/lw-platform/lw-ai/overview">
    Advanced AI-powered data discovery and search
  </Card>

  <Card title="Neural Hybrid Search" icon="magnifying-glass-plus" href="/docs/lw-platform/lw-ai/quickstart-lucidworks-ai-nhs-rag">
    Combine lexical precision with semantic understanding for more relevant results
  </Card>

  <Card title="Core Settings" icon="sliders" href="/docs/lw-platform/lw-core/overview">
    Build fast, intuitive, and configurable search experiences
  </Card>

  <Card title="Agent Studio" icon="comments" href="/docs/lw-platform/lw-agent-studio/overview">
    Prototype and deploy enterprise-grade AI agents
  </Card>

  <Card title="Commerce Studio" icon="cart-shopping" href="/docs/lw-platform/lw-cs/overview">
    Optimize search results and improve product discovery
  </Card>

  <Card title="Analytics Studio" icon="chart-line" href="/docs/lw-platform/lw-analytics/overview">
    Transform data into actionable intelligence
  </Card>

  <Card title="Signals Beacon" icon="wave-square" href="/docs/lw-platform/lw-analytics/signals/overview">
    Low-code signal capture for advanced analytics
  </Card>
</CardGroup>
