***

title: add_bullets
slug: /reference/python/agents/context-builder/context/add-bullets
description: Add a POM section with bullet points to the context prompt.
max-toc-depth: 3
---------------------

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

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

Add a POM section with bullet points to the context prompt. Cannot be used
together with `set_prompt()`.

## **Parameters**

<ParamField path="title" type="str" required={true} toc={true}>
  Section heading.
</ParamField>

<ParamField path="bullets" type="list[str]" required={true} toc={true}>
  List of bullet point strings.
</ParamField>

## **Returns**

[`Context`][ref-context] -- Self for method chaining.

## **Example**

```python {7}
from signalwire import AgentBase

agent = AgentBase(name="my-agent", route="/agent")

contexts = agent.define_contexts()
ctx = contexts.add_context("default")
ctx.add_bullets("Rules", [
    "Never share account numbers with the caller",
    "Always confirm changes before applying",
    "Escalate fraud concerns immediately"
])
ctx.add_step("greet").set_text("Greet the caller and ask how you can help.")

agent.serve()
```