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

# Single Agent Structure • AI Agents Framework

> SingleAgentStructure: Structure for single-agent generation (Anthropic's 'start simple' principle).

# SingleAgentStructure

> Defined in the [**auto**](../modules/auto) module.

<Badge color="purple">AI Agents Framework</Badge>

Structure for single-agent generation (Anthropic's 'start simple' principle).

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#8B0000', 'primaryTextColor': '#fff', 'primaryBorderColor': '#710101', 'lineColor': '#189AB4', 'secondaryColor': '#189AB4', 'tertiaryColor': '#fff' }}}%%

graph LR
    input["Input Data"] --> agent["Agent: SingleAgentStructure"]
    agent --> output["Output Result"]
    style agent fill:#8B0000,color:#fff
    style input fill:#8B0000,color:#fff
    style output fill:#8B0000,color:#fff
```

## Properties

<ResponseField name="name" type="str">
  No description available.
</ResponseField>

<ResponseField name="role" type="str">
  No description available.
</ResponseField>

<ResponseField name="goal" type="str">
  No description available.
</ResponseField>

<ResponseField name="backstory" type="str">
  No description available.
</ResponseField>

<ResponseField name="instructions" type="str">
  No description available.
</ResponseField>

<ResponseField name="tools" type="List">
  No description available.
</ResponseField>

<ResponseField name="task_description" type="str">
  No description available.
</ResponseField>

<ResponseField name="expected_output" type="str">
  No description available.
</ResponseField>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai/praisonai/auto.py#L591">
  `praisonai/auto.py` at line 591
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Agents Concept" icon="robot" href="/docs/concepts/agents" />

  <Card title="Single Agent Guide" icon="book-open" href="/docs/guides/single-agent" />

  <Card title="Multi-Agent Guide" icon="users" href="/docs/guides/multi-agent" />

  <Card title="Agent Configuration" icon="gear" href="/docs/configuration/agent-config" />

  <Card title="Auto Agents" icon="wand-magic-sparkles" href="/docs/features/autoagents" />
</CardGroup>
