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

# Platforms

> Integrations with leading AI/ML and data platforms

Bring together your AI models, workflows, tools, and data with ease. Contextual AI's integrations empower your RAG agents to operate smarter and share knowledge seamlessly across popular AI solutions.

## Available Integrations

<style jsx>
  {`
    @media (max-width: 640px) {
      .card-desc {
        display: none;
      }
    }
    `}
</style>

<div
  style={{
display: "grid",
gridTemplateColumns: "repeat(3, 1fr)",
gap: "1rem",
padding: "1rem 1rem",
color: "black",
marginBottom: "0",
}}
>
  {[
       {
        title: "Google Model Garden",
        desc: "",
        href: "#google-model-garden",
        img: "/images/int-logo-googlemg.png",
      },
      {
        title: "n8n (preview)",
        desc: "",
        href: "#n8n",
        img: "/images/int-logo-n8n.png",
      },
      { 
        title: "Snowflake",
        desc: "",
        href: "#snowflake",
        img: "/images/int-logo-snowflake.png",
      },
    ].map(({ title, href, desc, img }) => (
      <a
        key={title}
        href={href}
        style={{
          textDecoration: "none",
          color: "black",
          border: "1px solid #ddd",
          borderRadius: "8px",
          padding: "10px",
          textAlign: "center",
          display: "flex",
          flexDirection: "column",
          justifyContent: "space-between",
          transition: "all 0.25s ease-in-out",
          backgroundColor: "white",
          height: "100%",
        }}
        onMouseEnter={(e) => {
          e.currentTarget.style.boxShadow = "0 4px 12px rgba(0, 0, 0, 0.1)";
          e.currentTarget.style.transform = "translateY(-4px)";
        }}
        onMouseLeave={(e) => {
          e.currentTarget.style.boxShadow = "none";
          e.currentTarget.style.transform = "translateY(0)";
        }}
      >
        <div style={{
          display: "flex",
          justifyContent: "center",
          alignItems: "center",
          marginBottom: "0rem",
        }}>
          <img
            src={img}
            alt={`${title} icon`}
            draggable="false"
            style={{
              width: "100px",
              height: "100px",
              margin: "0",
              pointerEvents: "none"
            }}
          />
        </div>
        <div style={{ flex: "1" }}>
          <h2 style={{
            marginTop: 0,
            marginBottom: "0.5rem",
            fontWeight: "500",
            fontSize: "1rem",
            color: "black",
          }}>
            {title}
          </h2>
          <p className="card-desc" style={{ color: "black", margin: 0 }}>{desc}</p>
        </div>
      </a>
    ))}
</div>

***

### Google Model Garden

Google Model Garden is a platform that helps you discover, test, customize, and deploy Google proprietary and select OSS models and assets.

* [Contextual AI Reranker in Google Model Garden](https://console.cloud.google.com/vertex-ai/publishers/contextualai/model-garden/rerank-v2-instruct)
* [Contextual AI in the Google Marketplace](https://console.cloud.google.com/marketplace/product/contextualai-public/contextual-ai-saas)

***

### n8n

n8n is an no-code, open-source workflow automation platform that combines AI capabilities with business process automation.

<Note>
  The Contextual AI n8n integration is currently available on a **preview** basis.
</Note>

* [npm Package: Contextual AI n8n Community Node](https://www.npmjs.com/package/n8n-nodes-contextualai)
* [Contextual AI n8n How-to Guide](/how-to-guides/n8n)

***

### Snowflake

Snowflake is a leading cloud-native data platform consisting of a data warehouse, data lake, and suite of data services available as a SaaS.

* [Example Script: Contextual AI Python SDK & Snowflake Native App](https://github.com/ContextualAI/contextual-client-python/blob/main/examples/snowflake_native_app_example.py)
* [Snowflake and Contextual AI Native App Announcement](https://contextual.ai/blog/snowflake-marketplace)
* [Press Release: Snowflake + Contextual AI](https://contextual.ai/blog/contextual-ai-launches-enterprise-platform-as-snowflake-native-app-on-snowflake-marketplace)
* [Contextual AI in the Snowflake Marketplace](https://app.snowflake.com/marketplace/listing/GZTYZUILS2N/contextual-ai-contextual-ai-platform)
* [Snowflake Labs on GitHub](https://github.com/snowflake-labs)
