# build_connecting_footer

> **Function** in `deepagents_cli`

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

Build a footer shown while waiting for the server to connect.

## Signature

```python
build_connecting_footer(
    *,
    resuming: bool = False,
    local_server: bool = False,
) -> Content
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `resuming` | `bool` | No | Show `'Resuming...'` instead of any `'Connecting...'` variant. (default: `False`) |
| `local_server` | `bool` | No | Qualify the server as "local" in the connecting message.  Ignored when `resuming` is `True`. (default: `False`) |

## Returns

`Content`

Content with a connecting status message.

---

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