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

# Quickstart

> Instrument your AI agent with just a few lines of code

<Steps>
  <Step title="Install the Atla Insights SDK">
    Start by installing the Atla Insights Python SDK. From the terminal, run the following:

    <CodeGroup>
      ```bash icon="python" theme={null}
      pip install "atla-insights[all]"
      ```

      ```bash icon="square-js" theme={null}
      npm install @atla-ai/insights-sdk-js
      ```
    </CodeGroup>
  </Step>

  <Step title="Configure & instrument Atla Insights">
    Configure Atla Insights with your authentication token at the start of your application:

    <CodeGroup>
      ```python icon="python" lines theme={null}
      from atla_insights import configure, instrument_my_framework

      configure(token="<MY_ATLA_INSIGHTS_TOKEN>")
      instrument_my_framework()
      ```

      ```typescript icon="square-js" lines theme={null}
      import { configure, instrumentMyFramework } from "@atla-ai/insights-sdk-js";

      configure({ token: "<MY_ATLA_INSIGHTS_TOKEN>" });
      instrumentMyFramework();
      ```
    </CodeGroup>

    You can retrieve your authentication token from the Atla Insights platform.

    Also check out our [supported frameworks](/integrations).
  </Step>
</Steps>

## Need Help?

Don't hesitate to contact us and schedule an onboarding call if you would like us to walk through with you: [Schedule an onboarding call](https://calendly.com/d/csym-9kk-bbk/insights-ui-onboarding)

For common questions and troubleshooting guidance, check out our [Troubleshooting & FAQ section](/troubleshooting-faq).
