> For the complete documentation index, see [llms.txt](https://docs.pingouin.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pingouin.dev/scripts-docs/facial-recognition/general-config/frameworks.md).

# Frameworks

## cfg.useESX&#x20;

Set to ***true*** if you plan to use ESX Jobs to run the script, ***false*** if not applicable

```lua
cfg.useESX = true,
```

***

## cfg.useQB&#x20;

Set to ***true*** if you plan to use QB Jobs to run the script, ***false*** if not applicable

```lua
cfg.useQB = true,
```

***

## cfg.jobNames

Set the jobs which are allowed to use the panel / research and alerts part of the script. This will not affect the recognition part.

***BEFORE :***&#x20;

```lua
cfg.jobNames = {
    'police',
}
```

***AFTER***&#x20;

```lua
cfg.jobNames = {
    'police',
    'BSCO',
    'sheriff',
}
```
