***

title: setResetFullReset
slug: /reference/typescript/agents/context-builder/step/set-reset-full-reset
description: Set whether to perform a full conversation reset at this step.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[ref-step]: /docs/server-sdks/reference/typescript/agents/context-builder/step

Set whether to perform a full conversation reset when this step switches
contexts.

## **Parameters**

<ParamField path="fullReset" type="boolean" required={true} toc={true}>
  Whether to perform a full conversation reset on context switch.
</ParamField>

## **Returns**

[`Step`][ref-step] -- Self for method chaining.

## **Example**

```typescript {9-12}
import { ContextBuilder } from '@signalwire/sdk';

const builder = new ContextBuilder();
const ctx = builder.addContext('default');
ctx.addStep('greet').setText('Welcome the caller.');
const transfer = ctx.addStep('transfer');
transfer.setText('Transfer the caller to billing.');
transfer.setValidContexts(['billing']);
transfer.setResetFullReset(true);
transfer.setResetSystemPrompt(
  'You are a billing specialist. Forget all previous context.'
);
builder.addContext('billing').addStep('invoice').setText('Help with billing inquiries.');
```