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

# Use public images in Omni content and AI branding

> Customize your Omni content and AI agent branding with publicly accessible images.

export const categoryIcons = {
  'administration': 'lock',
  'api': 'terminal',
  'connections': 'database',
  'dashboards': 'table-columns',
  'embed': 'code',
  'errors': 'exclamation',
  'migration': 'angles-right',
  'modeling': 'wrench',
  'patterns': 'plus',
  'schedules & alerts': 'envelope',
  'visualizations': 'chart-column',
  'workbooks': 'book'
};

export const GuideSidebar = ({category, relatedLinks, updatedDate}) => {
  const [progress, setProgress] = React.useState(0);
  React.useEffect(() => {
    const sidebar = document.querySelector('.guide-sidebar');
    if (!sidebar) return;
    let container = sidebar.parentElement;
    while (container && !container.querySelector('.guide-header')) {
      container = container.parentElement;
    }
    if (container && !container.classList.contains('guide-page-layout')) {
      container.classList.add('guide-page-layout');
    }
  }, []);
  React.useEffect(() => {
    const handleScroll = () => {
      const scrollTop = window.scrollY;
      const docHeight = document.documentElement.scrollHeight - window.innerHeight;
      const scrollPercent = docHeight > 0 ? scrollTop / docHeight * 100 : 0;
      setProgress(Math.min(100, Math.max(0, scrollPercent)));
    };
    window.addEventListener('scroll', handleScroll, {
      passive: true
    });
    handleScroll();
    return () => window.removeEventListener('scroll', handleScroll);
  }, []);
  const icon = category ? categoryIcons[category.toLowerCase()] || 'book' : 'book';
  return <aside className="guide-sidebar">
      <div className="guide-sidebar-content">
        <a href="/guides" className="guide-sidebar-back">
          <Icon icon="arrow-left" iconType="solid" size={14} />
          <span>All guides</span>
        </a>

        <div className="guide-sidebar-section">
          <div className="guide-sidebar-label">Progress</div>
          <div className="guide-sidebar-progress">
            <div className="guide-mascot">
              <svg viewBox="0 0 688 690" width="48" height="48">
                <defs>
                  <clipPath id="progressClip">
                    <rect x="0" y={0} width="688" height={progress * 6.9} />
                  </clipPath>
                </defs>

                {}
                <path d="M343.67 1.5C542.684 1.5 685.84 149.351 685.84 344.84C685.84 540.328 542.685 688.18 343.67 688.18C144.655 688.18 1.5 540.318 1.5 344.84C1.50007 149.361 144.655 1.50005 343.67 1.5Z" fill="#FCFCF7" stroke="#FF5FA2" strokeWidth="3" />

                {}
                <path d="M343.67 0C143.81 0 0 148.55 0 344.84C0 541.13 143.81 689.68 343.67 689.68C543.53 689.68 687.34 541.14 687.34 344.84C687.34 148.54 543.53 0 343.67 0Z" fill="#FF5FA2" clipPath="url(#progressClip)" />

                {}
                <path d="M337.89 319.29C337.89 336.75 322.49 350.14 302.81 349.83C286.18 349.57 273.89 337.29 274.37 321.45C274.88 304.82 290.91 290.88 309.98 290.44C325.69 290.09 337.88 302.69 337.88 319.29H337.89Z" fill="#4D122C" />
                <path d="M566.17 319.29C566.17 336.75 550.77 350.14 531.09 349.83C514.46 349.57 502.17 337.29 502.65 321.45C503.16 304.82 519.19 290.88 538.26 290.44C553.97 290.09 566.16 302.69 566.16 319.29H566.17Z" fill="#4D122C" />
                <path d="M367.74 342.07C360.22 346.32 359.4 354.9 370.62 366.4C381.85 377.9 399.76 389.56 420.81 389.18C441.88 389.1 460.67 377.72 472.47 363.53C473.83 361.93 478.84 356.88 478.51 351.07C478.32 348.35 476.17 341.19 467.83 341.38C463.46 341.44 461.21 343.68 456.69 347.36C445.2 356.14 432.7 361.21 420.56 361.27C408.43 361.43 395.68 356.17 385.39 347.22C380.32 342.81 375.25 337.82 367.74 342.07Z" fill="#4D122C" />
              </svg>
            </div>
            <span className="guide-sidebar-progress-text">{Math.round(progress)}%</span>
          </div>
        </div>

        {category && <div className="guide-sidebar-section">
            <div className="guide-sidebar-label">Category</div>
            <div className="guide-sidebar-category">
              <Icon icon={icon} iconType="solid" size={14} />
              <span>{category}</span>
            </div>
          </div>}

        {updatedDate && <div className="guide-sidebar-section">
            <div className="guide-sidebar-label">Last updated</div>
            <div className="guide-sidebar-date">{updatedDate}</div>
          </div>}

        {relatedLinks && relatedLinks.length > 0 && <div className="guide-sidebar-section">
            <div className="guide-sidebar-label">Related</div>
            <ul className="guide-sidebar-links">
              {relatedLinks.map((link, index) => <li key={index}>
                  <a href={link.href}>{link.title}</a>
                </li>)}
            </ul>
          </div>}
      </div>
    </aside>;
};

export const GuideTitle = ({title}) => {
  return <div className="guide-header">
      <h1 className="guide-title">{title}</h1>
    </div>;
};

<GuideSidebar
  categoryIcons={categoryIcons}
  category="patterns"
  updatedDate="September 2026"
  relatedLinks={[
{ title: "Markdown tiles", href: "[/ai/settings/branding](/visualize-present/dashboards/text-markdown)" },
{ title: "AI branding", href: "/ai/settings/branding" },
{ title: "Embed AI chat customization", href: "/embed/customization/ai-chat" }
]}
/>

<GuideTitle title="Use public images in Omni content and AI branding" />

Whether you want to update your [agent image](/ai/settings/branding#url-to-agent-image) in the AI Hub or add a photo in a [dashboard Markdown tile](/visualize-present/dashboards/text-markdown), Omni requires a publicly accessible image URL. If you paste in a link that doesn't represent a public image, Omni may fail to load the image.

You can use any host that gives you a direct, public image link. This guide walks through hosting an image on Google Drive and building a link Omni can actually load.

## Requirements

* **A Google account you can upload the image to**. This guide includes Google-specific instructions, but you can use a different host if you prefer.
* **Organization Admin** permissions in Omni, if updating [AI branding settings](/ai/settings/branding).

## Why this happens

Several places in Omni ask for the URL of a publicly hosted image:

* **AI Hub agent image** — the [**URL to agent image**](/ai/settings/branding#url-to-agent-image) field in AI branding settings
* **Organization theme logo and wordmark** — the [logo and wordmark](/administration/themes/application#branding-assets) fields in application theme settings
* **Omni app images** - Omni accepts image hosts when building an app, but the image's host must be added to the app's [External source policy](https://docs.omni.co/administration/settings/app-policy#external-source-policy).

These fields expect a URL that:

* Points directly at an image file, not a webpage that displays an image
* Is reachable without authentication
* Doesn't expire

For example, a regular Google Drive "share" link (`.../file/d/{fileID}/view`) opens a preview page rather than the raw image, so Omni can't load it.

## How to fix it

You can use any host that gives you a public image link, but this example uses Google Drive:

1. Upload the image to Google Drive.

2. Open sharing permissions on the image and set **General access** to **Anyone with the link**.

3. Copy the share link and extract the file ID. In a link like `https://drive.google.com/file/d/1AbCDefGhIJkLmNoPQRstuVWxyz/view?usp=sharing`, the file ID is the segment between `/d/` and `/view`. In this example, the file ID is `1AbCDefGhIJkLmNoPQRstuVWxyz`.

4. Build a link using Drive's thumbnail endpoint:

   ```text theme={null}
   https://drive.google.com/thumbnail?id={fileID}&sz=w640
   ```

   Replace `{fileID}` with the ID from the previous step. `sz=w640` sets the image width in pixels, which you can adjust if you need a different size.

   ```text theme={null}
   https://drive.google.com/thumbnail?id=1AbCDefGhIJkLmNoPQRstuVWxyz&sz=w640
   ```

5. Paste your new `/thumbnail` link into the desired location in Omni. In this example, we'll paste the URL into the [**URL to agent image**](/ai/settings/branding#url-to-agent-image) field in **AI Hub > General > Branding**. Omni recommends a square PNG, 128x128 pixels, for best results.

### Alternative hosting providers

If you'd rather not use Google Drive, any service that returns a stable, public image URL will work. For example, you can upload an image to [imgbb.com](https://imgbb.com) and use the direct link it creates.

## Next steps

* [AI branding](/ai/settings/branding) — Additional customization options for the Omni Agent.
