> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Keyword Boosting

> Boost recognition of specific terms (keyterm and keywords parameters).

<Info>**Deepgram only.** Other engines ignore these parameters.</Info>

Two parameters control keyword boosting. They target different Deepgram model generations.

## `keyterm` — Nova-3 and Flux

Comma-separated list of terms to boost. Simple — no intensifiers.

```
?keyterm=Telnyx,WebRTC,SIP
```

Deepgram Nova-3 and Flux only. Ignored on older models.

## `keywords` — Nova (Legacy)

Terms with optional intensity scores. Format: `keyword:intensifier`.

```
?keywords=Telnyx:2
```

Deepgram Nova only. Not supported on Flux (silently ignored).

## Which To Use

| Model  | Parameter  |
| ------ | ---------- |
| Flux   | `keyterm`  |
| Nova-3 | `keyterm`  |
| Nova   | `keywords` |
| Nova-2 | `keywords` |

## Examples

Boost multiple terms on Nova-3:

```
?transcription_engine=Deepgram&model=nova-3&keyterm=Telnyx,SIP,RTP,WebRTC
```

Boost with intensifiers on legacy Nova:

```
?transcription_engine=Deepgram&model=nova&keywords=Telnyx:2&keywords=telephony:1
```
