***

title: getPostPrompt
slug: /reference/typescript/agents/configuration/prompt-manager/get-post-prompt
description: Return the post-prompt text.
max-toc-depth: 3
---------------------

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

Return the post-prompt text, or `null` if not set.

## **Parameters**

None.

## **Returns**

`string | null` -- The post-prompt string, or `null` if not set.

## **Example**

```typescript {5}
import { PromptManager } from '@signalwire/sdk';

const pm = new PromptManager();
pm.setPostPrompt('Summarize the conversation.');
console.log(pm.getPostPrompt()); // "Summarize the conversation."
```