> ## 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.

# agents • AI Agent SDK

> Module reference for agents

# agents

<Badge color="blue">AI Agent</Badge>

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents.agents import agents
```

## Classes

<CardGroup cols={2}>
  <Card title="TaskStatus" icon="brackets-curly" href="../classes/TaskStatus">
    Enumeration for task status values to ensure consistency
  </Card>

  <Card title="AgentTeam" icon="brackets-curly" href="../classes/AgentTeam">
    Multi-agent coordinator that manages and delegates work to multiple agents.
  </Card>
</CardGroup>

## Functions

<CardGroup cols={2}>
  <Card title="encode_file_to_base64()" icon="function" href="../functions/encode_file_to_base64">
    Base64-encode a file.
  </Card>

  <Card title="process_video()" icon="function" href="../functions/process_video">
    Split video into frames (base64-encoded).
  </Card>

  <Card title="get_multimodal_message()" icon="function" href="../functions/get_multimodal_message">
    Build multimodal message content for LLM with text and images.
  </Card>

  <Card title="process_task_context()" icon="function" href="../functions/process_task_context">
    Process a single context item for task execution.
  </Card>
</CardGroup>

***

## 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>
