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

# Advanced Features

> Recording, AMD, DTMF, call transfer, barge-in, variables, and conversation history.

# Features

Advanced capabilities available in the Patter TypeScript SDK.

## Call Recording

Enable call recording via the Twilio Recordings API. Recordings are stored in your Twilio account.

```typescript theme={null}
await phone.serve({
  agent,
  recording: true,
  onCallEnd: async (data) => {
    console.log("Recording available in your Twilio console");
  },
});
```

<Warning>
  Recording is only available with Twilio. Telnyx recording is not yet supported.
</Warning>

The SDK sets up a `/webhooks/twilio/recording` endpoint to receive recording status callbacks. Recording URLs are logged to the console when they become available.

### Local Recording (Carrier-Neutral)

`localRecording` records each call **on your own machine**, with no carrier API involved. The SDK taps the audio already flowing through the per-call stream handler and writes an interleaved stereo WAV — **left channel = caller, right channel = agent** — as PCM16 at 16 kHz. μ-law 8 kHz carrier audio is upsampled and 24 kHz Realtime audio is downsampled, so the output format is the same on every carrier and engine mode.

```typescript theme={null}
await phone.serve({ agent, localRecording: true });

// Or pass a directory string to choose where the WAVs go:
await phone.serve({ agent, localRecording: "/var/recordings" });
```

| Parameter        | Type                | Default | Description                                                                                                                                                                                      |
| ---------------- | ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `localRecording` | `boolean \| string` | `false` | SDK-side stereo WAV recording (left = caller, right = agent, PCM16 16 kHz). Pass a directory string to set the output directory. Works on every carrier (Twilio, Telnyx, Plivo) and engine mode. |

Where the file lands:

1. Directory string → `<dir>/<call_id>.wav`.
2. [Call logging](/typescript-sdk/call-logging) enabled → `<call_log_dir>/recording.wav`, next to `metadata.json` and `transcript.jsonl` (so it is covered by the same `PATTER_LOG_RETENTION_DAYS` cleanup).
3. Otherwise → `./recordings/<call_id>.wav` under the current working directory.

The final path is surfaced as `recording_path` in the [`onCallEnd`](/typescript-sdk/events#oncallend) payload and persisted in the call-log `metadata.json`:

```typescript theme={null}
await phone.serve({
  agent,
  localRecording: true,
  onCallEnd: async (data) => {
    if (data.recording_path) {
      console.log(`Recording saved: ${data.recording_path}`);
    }
  },
});
```

<Note>
  The WAV header is finalized on **every** teardown path — including abnormal carrier WebSocket drops — so a truncated call still yields a playable file. `localRecording` is independent of the carrier-side `recording` flag: both can be enabled on the same call.
</Note>

## Answering Machine Detection (AMD)

Detect voicemail systems on outbound calls and optionally leave a message. AMD is available with Twilio only.

```typescript theme={null}
await phone.call({
  to: "+15559876543",
  agent,
  machineDetection: true,
  voicemailMessage: "Hi, this is Acme Corp calling about your appointment tomorrow. Please call us back at 555-000-1234.",
});
```

When AMD detects a machine (after the beep or after silence), the SDK automatically:

1. Plays the `voicemailMessage` as TwiML
2. Hangs up the call

If no `voicemailMessage` is set, the call proceeds normally even when a machine is detected.

## DTMF Input

Keypad presses (DTMF tones) during a call are automatically forwarded to the AI agent as text in the format `[DTMF: N]`, where `N` is the digit pressed (0-9, \*, #).

```
User presses "1" → Agent receives: [DTMF: 1]
User presses "#" → Agent receives: [DTMF: #]
```

No additional configuration is needed. The AI agent's system prompt can include instructions on how to handle DTMF input:

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: `You are an IVR system. When the user presses:
- 1: Transfer to sales
- 2: Transfer to support
- 0: Transfer to operator
Respond to [DTMF: N] inputs accordingly.`,
});
```

## Call Transfer

The `transfer_call` system tool is automatically available to every agent. The AI model invokes it when the caller asks to speak to a human.

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: `You are a front desk assistant. If the caller wants to speak to a human, transfer them to +15559876543.`,
});
```

When the transfer tool is invoked, the SDK uses the Twilio REST API to redirect the active call to the target number.

## Barge-In

Patter supports barge-in — the caller can interrupt the AI agent while it is speaking. The SDK uses mark-based audio tracking to detect when the caller starts speaking during AI playback.

When barge-in occurs:

1. The current TTS audio is immediately stopped
2. The caller's speech is processed normally
3. The AI generates a new response

### Configuration

Barge-in is enabled by default with a 300 ms hang-over window. Customize the sensitivity using `bargeInThresholdMs`:

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: "...",
  bargeInThresholdMs: 0, // Disable barge-in (exact interruption)
});
```

| Parameter            | Type     | Default | Description                                                                                                   |
| -------------------- | -------- | ------- | ------------------------------------------------------------------------------------------------------------- |
| `bargeInThresholdMs` | `number` | `300`   | Hang-over window in milliseconds. Set to `0` to disable barge-in. Higher values delay interruption detection. |

A hang-over window of 300 ms prevents false positives from background noise while remaining responsive to genuine interruptions.

## Echo Cancellation (NLMS AEC)

On **speakerphone** or **dev-tunnel** deployments the agent's outbound TTS bleeds back into the inbound mic feed. The pipeline-mode VAD then sees continuous voice-like energy and never registers silence — barge-in only fires during natural pauses in the TTS, producing the intermittent "interrupt sometimes works, other times the agent keeps talking" symptom. **Acoustic echo cancellation (AEC)** subtracts the estimated echo from the mic stream before VAD/STT see it.

Patter ships a built-in NLMS (normalised least-mean-squares) adaptive filter with Geigel double-talk detection. Enable it with one flag — pipeline mode only:

```typescript theme={null}
import { DeepgramSTT, AnthropicLLM, ElevenLabsTTS } from "getpatter";

const agent = phone.agent({
  stt: new DeepgramSTT(),
  llm: new AnthropicLLM(),
  tts: new ElevenLabsTTS({ voiceId: "rachel" }),
  systemPrompt: "You are a helpful assistant.",
  echoCancellation: true,
});
```

| Parameter          | Type      | Default | Description                                                                                                                                                                |
| ------------------ | --------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `echoCancellation` | `boolean` | `false` | When `true` (pipeline mode only), instantiates an `NlmsEchoCanceller` per call that subtracts the agent's own TTS bleed from the inbound mic stream before VAD/STT see it. |

### When to enable

* **Enable** for speakerphone callers, ngrok / Cloudflare tunnel demos, laptop-mic test harnesses, and any deployment where the agent can hear itself.
* **Leave off** for handset / headset callers — there is no bleed to cancel, and the 0.5–2 s convergence period would briefly attenuate caller speech if they spoke before any TTS played.
* See [Barge-In](#barge-in) above — AEC is the fix when barge-in only fires intermittently because of self-bleed.

### Tuning

The default `NlmsEchoCanceller` is tuned for narrowband mono 16 kHz PCM (the format Patter's pipeline pushes between transcoding and STT). For lower-level control — custom tap counts, step size, warmup behaviour — instantiate one directly:

```typescript theme={null}
import { NlmsEchoCanceller } from "getpatter/audio/aec";

// 8 kHz callers benefit from a longer filter window
const aec = new NlmsEchoCanceller({ sampleRate: 8000, filterTaps: 1024 });
```

| Constructor option | Default  | Notes                                                                |
| ------------------ | -------- | -------------------------------------------------------------------- |
| `sampleRate`       | `16000`  | `8000` or `16000` only.                                              |
| `filterTaps`       | `512`    | 32 ms @ 16 kHz — covers typical cellular / VoIP echo paths.          |
| `stepSize`         | `0.1`    | NLMS step in `(0, 1]` post-warmup.                                   |
| `warmupStepSize`   | `0.5`    | Aggressive 5× ramp during the first \~0.5 s for fast convergence.    |
| `warmupSeconds`    | `0.5`    | Duration of the warmup phase.                                        |
| `leakage`          | `0.9999` | Slow forgetting of stale tap estimates.                              |
| `doubleTalkRho`    | `0.6`    | Geigel threshold — freezes adaptation when caller speaks over agent. |

<Note>
  NLMS AEC adds CPU work proportional to `filterTaps × frameSamples` per inbound frame (\~0.5–1 ms per 20 ms frame at the defaults). On commodity CPUs this is well under the per-frame budget, but profile if you stack AEC with heavy VAD + STT in the same event loop.
</Note>

<Warning>
  This is a lightweight time-domain AEC, not a drop-in replacement for production-grade DSP (WebRTC's AEC3, Speex AEC). For tight integration with battle-tested DSP, wrap a binding externally and feed it via `audioFilter` instead.
</Warning>

<Warning>
  **Browser / native only — a no-op by design on PSTN.** The NLMS filter only models an echo path that fits inside its 32 ms window. On a phone call the audio traverses a 250–1500 ms carrier jitter buffer + loop, so the round-trip echo lands far outside that window and the filter passes the frame through unchanged. PSTN line echo is already handled by the carrier (ITU-T G.168) plus the caller's own device, so `echoCancellation` should stay `false` on Twilio / Telnyx / Plivo — enable it only for browser/WebRTC or native-mobile deployments where Patter owns the mic-and-speaker path end-to-end. The SDK logs a one-shot warning if you enable it on a PSTN carrier.
</Warning>

## Inbound Audio Front-End (High-Pass & AGC)

Two opt-in, provider-agnostic stages clean up the caller audio before it reaches VAD and STT — they run once per frame regardless of which STT you choose, and both fail open (a stage error degrades to passthrough, never drops the call). The full inbound order is `high-pass → resample → AEC → noise suppression → AGC → VAD → STT`.

```ts theme={null}
const agent = phone.agent({
  stt: deepgram(),
  llm: anthropic(),
  tts: elevenlabs({ voiceId: "rachel" }),
  systemPrompt: "You are a helpful assistant.",
  highPassHz: 100,   // strip DC / mains hum / rumble below 100 Hz
  agc: true,         // normalise caller level toward the target RMS
});
```

| Option       | Type                   | Default     | Description                                                                                                                                                                                                                                                          |
| ------------ | ---------------------- | ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `highPassHz` | `number`               | `undefined` | High-pass / DC-block cutoff in Hz (typical 80–120). Runs as the **first** stage, before AEC, removing DC offset, mains hum (50/60 Hz) and handling rumble that otherwise bias the echo canceller and inflate the VAD energy estimate.                                |
| `agc`        | `boolean \| AgcConfig` | `false`     | Speech-selective automatic gain control. Runs **after** noise suppression and **before** VAD/STT, normalising the caller's level toward a target RMS to cut word-error rate on quiet / variable-distance talkers. `true` uses defaults; pass an `AgcConfig` to tune. |

The AGC is **speech-selective** — gain is only driven up on speech frames, so the quiet gaps between words are never amplified into a hiss — and **peak-limited** so an aggressive boost never clips:

```ts theme={null}
const agent = phone.agent({
  // ...
  agc: {
    targetRmsDbfs: -18,    // desired output level
    maxGainDb: 30,         // never amplify the noise floor by more than this
    speechFloorDbfs: -45,  // frames below this are treated as non-speech
    attackMs: 10,          // fast gain reduction when the talker gets loud
    releaseMs: 200,        // slow gain increase when the talker gets quiet
    limiterCeiling: 0.99,  // peak ceiling as a fraction of full scale
  },
});
```

<Note>
  Both stages are pure DSP and cost well under 1 % of one core. They are pipeline-mode only — Realtime / ConvAI providers own their own inbound audio path.
</Note>

## Aggressive First-Flush (Low-Latency)

In **pipeline mode**, the sentence chunker normally waits for a hard sentence terminator (`.`, `!`, `?`, etc.) before emitting a chunk to TTS. With `aggressiveFirstFlush: true` on `phone.agent({ ... })`, the chunker emits the **first clause** of each response on a soft punctuation boundary (`,`, em-dash `—`, en-dash `–`) once the buffer reaches \~40 characters.

```typescript theme={null}
const agent = phone.agent({
  stt: new DeepgramSTT(),
  llm: new AnthropicLLM(),
  tts: new ElevenLabsTTS({ voiceId: "rachel" }),
  systemPrompt: "You are a helpful assistant.",
  aggressiveFirstFlush: true,
});
```

**Trade-off:** Saves **200–500 ms** of time-to-first-audio (TTFA) on the first sentence of each turn, at the cost of slightly clipped prosody on the very first chunk.

<Warning>
  `aggressiveFirstFlush` is **hard-disabled when `language` starts with `"it"`** (Italian). Italian uses the comma as a decimal separator (`12,5`), so an aggressive flush would split mid-number. The flag silently has no effect for Italian agents.
</Warning>

## Phone Preamble (System Prompt Wrapper)

By default, Patter prepends a phone-friendly preamble to every agent's `systemPrompt` before sending it to the LLM. The preamble instructs the model to:

* Avoid markdown, emojis, bullet lists, and code blocks.
* Spell out numbers and dates (e.g., "two thousand twenty-six", not `2026`).
* Keep replies short — phone calls reward brevity over completeness.

Most callers benefit from this. If you ship a custom prompt that already encodes phone conventions — or you want to drive a non-voice LLM channel through the same agent — opt out:

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: "...",  // shipped to the LLM verbatim
  disablePhonePreamble: true,
});
```

| Parameter              | Type      | Default | Description                                                                                                        |
| ---------------------- | --------- | ------- | ------------------------------------------------------------------------------------------------------------------ |
| `disablePhonePreamble` | `boolean` | `false` | When `true`, ship `systemPrompt` verbatim to the LLM. When `false` (default), prepend the phone-friendly preamble. |

## Dynamic Variables

Use `{placeholder}` syntax in system prompts for per-call customization:

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: "You are a support agent for {company}. The caller is {caller_name} with account {account_id}.",
  variables: {
    company: "Acme Corp",
    caller_name: "Default",
    account_id: "unknown",
  },
});
```

### Per-Call Variable Override

Override agent-level variables for individual outbound calls:

```typescript theme={null}
await phone.call({
  to: "+15559876543",
  agent,
  variables: {
    caller_name: "Jane Smith",
    account_id: "ACC-12345",
  },
});
```

Call-level variables are merged with agent-level variables, with call-level taking precedence.

<Info>
  Variables are sanitized before substitution. Keys like `__proto__`, `constructor`, and `prototype` are stripped to prevent prototype pollution.
</Info>

## Conversation History

Every call maintains a conversation history that accumulates throughout the call. The history is:

* Passed to `onMessage` callbacks as `data.history`
* Included in `onCallEnd` as `data.transcript`
* Capped at **200 entries** per call (oldest entries are dropped when the limit is reached)

Each entry contains:

```typescript theme={null}
{
  role: string;       // "user" or "assistant"
  text: string;       // Transcript text
  timestamp: number;  // Unix timestamp (ms)
}
```

## AI Disclosure

Patter does **not** automatically play an AI disclosure message. If your jurisdiction requires callers to be informed they are speaking with an AI, include a disclosure in your agent's `firstMessage`:

```typescript theme={null}
const agent = phone.agent({
  systemPrompt: "You are a helpful assistant.",
  firstMessage: "Hi, this is an AI assistant from Acme Corp. How can I help you today?",
});
```

The `firstMessage` is spoken as soon as the call connects, before the caller says anything. This is the recommended place for any legally required AI disclosure.

## Max Call Duration

As a safety measure, calls are automatically terminated after **1 hour** (60 minutes). This prevents runaway billing from calls that are accidentally left open.

When the limit is reached:

1. The SDK logs a warning: `Call {callId} hit max duration (60min), terminating`
2. The call is hung up via the telephony provider API

This limit is not configurable and applies to all calls.

## Outbound Calls

Make outbound calls in local mode:

```typescript theme={null}
// Twilio
await phone.call({
  to: "+15559876543",
  agent,
});

// With AMD and voicemail
await phone.call({
  to: "+15559876543",
  agent,
  machineDetection: true,
  voicemailMessage: "Please call us back.",
});
```

### LocalCallOptions

| Parameter          | Type                     | Required | Default | Description                                                       |
| ------------------ | ------------------------ | -------- | ------- | ----------------------------------------------------------------- |
| `to`               | `string`                 | Yes      | —       | Destination phone number (E.164 format).                          |
| `agent`            | `AgentOptions`           | Yes      | —       | Agent configuration for the call.                                 |
| `machineDetection` | `boolean`                | No       | `false` | Enable AMD (Twilio only).                                         |
| `voicemailMessage` | `string`                 | No       | —       | Message to leave on voicemail. Requires `machineDetection: true`. |
| `variables`        | `Record<string, string>` | No       | —       | Per-call variable overrides merged into `agent.variables`.        |

The `to` parameter must be in E.164 format (e.g., `+15559876543`). The SDK validates this and throws if the format is invalid.
