# build_welcome_footer

> **Function** in `deepagents_code`

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

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

Includes a tip to help users discover features unless tips are disabled.

## Signature

```python
build_welcome_footer(
    *,
    primary_color: str = theme.PRIMARY,
    tip: str | None = None,
    show_tip: bool | 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`) |
| `show_tip` | `bool \| None` | No | Whether to show the tip. When `None`, the startup splash tips env var controls visibility. (default: `None`) |

## Returns

`Content`

Content with the ready prompt and, when enabled, a tip.

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/0412009c5441bef8d75a427e1da8909e33ab5b56/libs/code/deepagents_code/widgets/welcome.py#L487)