Skip to main content

Documentation Index

Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt

Use this file to discover all available pages before exploring further.

Common Examples

Basic Usage

Display while waiting for a response:
import { Loader } from "@servicetitan/anvil2-ext-atlas";

function LoadingState() {
  return <Loader />;
}

Within a Message

Show loading state in an assistant message:
import { Loader, AtlasHeader } from "@servicetitan/anvil2-ext-atlas";

function LoadingMessage() {
  return (
    <div>
      <AtlasHeader assistant="Atlas" />
      <Loader />
    </div>
  );
}
Last modified on April 9, 2026