# build_welcome_footer

> **Function** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/widgets/welcome/build_welcome_footer)

Build the footer shown at the bottom of the welcome banner.

Includes a tip to help users discover features.

## Signature

```python
build_welcome_footer(
    *,
    primary_color: str = theme.PRIMARY,
    tip: str | None = None,
) -> Content
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `primary_color` | `str` | No | Color string for the ready prompt.  Defaults to the module-level ANSI `PRIMARY` constant; widget callers should pass the active theme's hex value. (default: `theme.PRIMARY`) |
| `tip` | `str \| None` | No | Tip text to display. When `None`, a random tip is selected.  Pass an explicit value to keep the tip stable across re-renders. (default: `None`) |

## Returns

`Content`

Content with the ready prompt and a tip.

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/ead1d09c7b5c2fe58044917bd7bfbb11634d55e2/libs/cli/deepagents_cli/widgets/welcome.py#L315)