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

# Plugins Enabled • Rust AI Agent SDK

> PluginsEnabled: Plugins enabled state

# PluginsEnabled

> Defined in the [**Config Loader**](../modules/config_loader) module.

<Badge color="orange">Rust AI Agent SDK</Badge>

Plugins enabled state

## Fields

| Name       | Type      | Description                   |
| ---------- | --------- | ----------------------------- |
| `Boolean`  | `variant` | -                             |
| `enabled`  | `variant` | -                             |
| `disabled` | `variant` | -                             |
| `Bool`     | `variant` | Boolean enabled/disabled      |
| `List`     | `variant` | -                             |
| `of`       | `variant` | -                             |
| `specific` | `variant` | -                             |
| `plugin`   | `variant` | -                             |
| `names`    | `variant` | -                             |
| `List`     | `variant` | List of specific plugin names |

## Methods

### `is_enabled`

```rust theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
fn is_enabled(&self) -> bool
```

Check if plugins are enabled

### `get_list`

```rust theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
fn get_list(&self) -> Option<&[String]>
```

Get list of enabled plugins (None if all enabled)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-rust/praisonai/src/parity/config_loader.rs">
  `praisonai/src/parity/config_loader.rs` at line 0
</Card>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Rust Plugins" icon="plug" href="/docs/rust/plugins" />
</CardGroup>
