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

# Agent Settings

> Configure your agent settings and preferences in the `Settings` panel

Agent settings control how your agent executes tasks and behaves during automation. These settings are **agent-specific** and apply to all executions of this agent.

<Info>
  **Agent Settings vs. Agent Profiles**

  * **Agent Settings** (this page): Control agent behavior, execution limits, and agent-level configuration. These settings are tied to the agent itself.

  * **Agent Profiles**: Control browser environment settings like proxies, cookies, cache persistence, and credentials. Profiles are reusable across multiple agents. See [Agent Profiles](/fundamentals/profiles) for profile configuration.
</Info>

## Agent-Level Configuration

<CardGroup cols={2}>
  <Card title="Agent Behavior" icon="robot" horizontal>
    Control how your agent executes tasks and interacts with webpages
  </Card>

  <Card title="Execution Limits" icon="clock" horizontal>
    Set maximum steps and timeout limits
  </Card>

  <Card title="LLM Settings" icon="brain" horizontal>
    Customize AI behavior and response generation
  </Card>

  <Card title="Advanced Features" icon="toggle-on" horizontal>
    Enable optional features and performance optimizations
  </Card>
</CardGroup>

## Agent Settings

<AccordionGroup>
  <Accordion title="Agent Behavior">
    <Tabs>
      <Tab title="Execution Limits">
        **Maximum Steps** `10-200`

        Maximum number of steps the agent can take during execution

        **Execution Timeout** `1-120 minutes`

        Maximum execution time before the agent automatically stops
      </Tab>

      <Tab title="Input Method">
        **Text Input Method**

        Choose how the agent inputs text into web forms:

        * **Auto**: Automatically detect the best input method
        * **Type**: Simulate natural typing behavior
        * **Paste**: Direct paste for faster input
      </Tab>
    </Tabs>
  </Accordion>

  <Accordion title="Viewport Settings">
    **Viewport Width** `100-2000 pixels`

    Browser viewport width in pixels (100-2000)

    **Viewport Height** `100-2000 pixels`

    Browser viewport height in pixels (100-2000)

    <Tip>
      Use standard resolutions like 1920x1080 for desktop or 375x667 for mobile testing
    </Tip>
  </Accordion>

  <Accordion title="Feature Toggles">
    **Parallel Tool Calls**

    Allow agent to execute multiple tools simultaneously for faster performance
  </Accordion>
</AccordionGroup>

***

## Profile-Level Settings

The following settings are configured in **Agent Profiles**, not in agent settings. Profiles allow you to reuse browser environment configurations across multiple agents.

<AccordionGroup>
  <Accordion title="Proxy Configuration">
    **Proxy settings** (country, type, persistent IP) are configured in [Agent Profiles](/fundamentals/profiles#proxy-settings).

    <Info>
      Configure proxy settings when creating or editing an agent profile. This allows you to reuse the same proxy configuration across multiple agents.
    </Info>
  </Accordion>

  <Accordion title="Cache & Cookie Persistence">
    **Cache persistence** and **cookie management** are configured in [Agent Profiles](/fundamentals/profiles#automation-features).

    <Info>
      Enable cache persistence in your agent profile to maintain browser state, cookies, and cached data between executions. This is separate from agent-level cache clearing.
    </Info>
  </Accordion>

  <Accordion title="Credentials & Authentication">
    **Credentials, cookies, and 2FA secrets** are managed in [Agent Profiles](/fundamentals/profiles#credentials-management).

    <Info>
      Store authentication credentials securely in agent profiles. These can be reused across multiple agents that need the same authentication.
    </Info>
  </Accordion>
</AccordionGroup>

***

## Agent Management

<CardGroup cols={2}>
  <Card title="Agent Identity" icon="user" horizontal>
    Manage agent name and organizational settings
  </Card>

  <Card title="Data Management" icon="database" horizontal>
    Clear agent-level cache and stored data
  </Card>
</CardGroup>

<AccordionGroup>
  <Accordion title="Agent Identity">
    **Change Agent Name**

    Update the display name for this agent

    **Organization**

    Set or change the organization that owns this agent. Anyone with access to this organization will be able to see and use this agent.
  </Accordion>

  <Accordion title="Data Management">
    **Clear Browser Cache**

    Clear the browser cache for this agent. This removes:

    * All cached data and files
    * Stored cookies and sessions
    * Browser state and preferences

    <Info>
      This clears agent-level cache. For profile-level cache persistence settings, see [Agent Profiles](/fundamentals/profiles#automation-features).
    </Info>
  </Accordion>

  <Accordion title="Agent Deletion">
    **Delete Agent**

    Permanently remove this agent, including:

    * All previous versions
    * All execution history
    * All associated data

    <Warning>
      This action cannot be undone. Consider exporting important data before deletion.
    </Warning>
  </Accordion>
</AccordionGroup>
