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

# Deployment Scheduler • AI Agents Framework

> DeploymentScheduler: Minimal deployment scheduler with provider-agnostic design.

# DeploymentScheduler

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

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

Minimal deployment scheduler with provider-agnostic design.

Features:

* Simple interval-based scheduling
* Thread-safe operation
* Extensible deployer factory pattern
* Minimal dependencies

## Constructor

<ParamField query="schedule_config" type="Optional" required={false}>
  No description available.
</ParamField>

## Methods

<CardGroup cols={2}>
  <Card title="set_deployer()" icon="function" href="../functions/DeploymentScheduler-set_deployer">
    Set custom deployer implementation.
  </Card>

  <Card title="start()" icon="function" href="../functions/DeploymentScheduler-start">
    Start scheduled deployment.
  </Card>

  <Card title="stop()" icon="function" href="../functions/DeploymentScheduler-stop">
    Stop the scheduler.
  </Card>

  <Card title="deploy_once()" icon="function" href="../functions/DeploymentScheduler-deploy_once">
    Execute a single deployment immediately.
  </Card>
</CardGroup>

## Source

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

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Background Tasks" icon="clock" href="/docs/features/background-tasks" />

  <Card title="Async Jobs" icon="list-check" href="/docs/features/async-jobs" />
</CardGroup>
