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

# start • AI Agents Framework

> start: Start scheduled deployment.

# start

<div className="flex items-center gap-2">
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**DeploymentScheduler**](../classes/DeploymentScheduler) class in the [**scheduler**](../modules/scheduler) module.

Start scheduled deployment.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
def start(schedule_expr: str, max_retries: int) -> bool
```

## Parameters

<ParamField query="schedule_expr" type="str" required={true}>
  Schedule expression (e.g., "daily", "\*/6h", "3600")
</ParamField>

<ParamField query="max_retries" type="int" required={false} default="3">
  Maximum retry attempts on failure
</ParamField>

### Returns

<ResponseField name="Returns" type="bool">
  True if scheduler started successfully
</ResponseField>

## Uses

* `logger.warning`
* `ScheduleParser.parse`
* `threading.Thread`
* `start`
* `logger.info`
* `logger.error`

## Used By

* [`PraisonAgentExecutor.execute`](../functions/PraisonAgentExecutor-execute)
* [`AgentScheduler.start`](../functions/AgentScheduler-start)
* [`Profiler.streaming`](../functions/Profiler-streaming)
* [`Profiler.streaming_async`](../functions/Profiler-streaming_async)
* [`Profiler.memory`](../functions/Profiler-memory)

## Source

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