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

# Settings

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

From the <Icon icon="gear" iconType="light" /> **Settings** page, you can:

* Change the location of your downloaded models
* View and update your [Desktop API](/docs/anaconda-desktop/desktop-api/getting-started) information
* Choose to share anonymous data with Anaconda
* Log out of your Anaconda account

To open your user settings:

1. Select the user dropdown menu in the upper-right corner.
2. Select <Icon icon="gear" iconType="light" /> *Settings*.

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/mqCqnMn3Be56PnQf/images/desktop_user_settings.png?fit=max&auto=format&n=mqCqnMn3Be56PnQf&q=85&s=4134975ec33ba7dab5d12cdf31397d42" alt="User settings page showing model location, Desktop API, data sharing, and logout options" width="3460" height="2164" data-path="images/desktop_user_settings.png" />
</Frame>

## Enabling beta features

Anaconda Desktop provides early access to experimental features through the <Icon icon="flask" iconType="solid" /> **BETA Features** section on the Settings page. When enabled, these features appear in the left-hand navigation under a <Icon icon="flask" iconType="solid" /> **BETA** section.

To enable or disable beta features:

1. Select the user dropdown menu in the upper-right corner.
2. Select <Icon icon="gear" iconType="light" /> **Settings**.
3. Scroll down to the <Icon icon="flask" iconType="solid" /> **BETA Features** section.
4. Toggle features `ON` or `OFF` as needed.

<Note>
  The <Icon icon="flask" iconType="solid" /> **BETA** section in the left-hand navigation only appears when at least one beta feature is enabled. If all beta features are toggled off, the section is hidden.

  ***

  If your Anaconda account belongs to an organization on Anaconda Platform, your organization administrator can restrict access to beta features. When a feature is disabled by your admin, its toggle displays a <Icon icon="lock" iconType="solid" /> and cannot be enabled. For more information, see [Organization settings](/docs/anaconda-platform/admin/organizations#organization-settings).
</Note>

### Available beta features

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Feature</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>[Agent Studio](/docs/anaconda-desktop/agent-studio/main)</GCell>
      <GCell>Build and manage AI agents.</GCell>
    </GRow>

    <GRow>
      <GCell>[MCP](/docs/anaconda-desktop/mcp)</GCell>
      <GCell>Configure Model Context Protocol servers.</GCell>
    </GRow>
  </GBody>
</GTable>
