***

title: add_system_bullets
slug: /reference/python/agents/context-builder/context/add-system-bullets
description: Add a POM section with bullets to the system 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 bullets to the system prompt. Cannot be combined with
`set_system_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 {9}
from signalwire import AgentBase

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

contexts = agent.define_contexts()
contexts.add_context("default").add_step("menu").set_text("Ask what the caller needs.")

support = contexts.add_context("support")
support.add_system_bullets("Guidelines", [
    "Verify identity before making changes",
    "Offer to escalate if issue is unresolved after 5 minutes"
])
support.add_step("diagnose").set_text("Understand the customer's issue.")

agent.serve()
```