***

title: start_input_timers
slug: /reference/python/relay/actions/standalone-collect-action/start-input-timers
description: Manually start the initial_timeout timer on an active collect.
max-toc-depth: 3
---------------------

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

Manually start the `initial_timeout` timer on the active collect operation. Useful
when `start_input_timers` was set to `False` during the initial call.

## **Returns**

`dict` -- Server acknowledgment.

## **Example**

```python {20}
from signalwire.relay import RelayClient

client = RelayClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
    contexts=["default"],
)

@client.on_call
async def handle_call(call):
    await call.answer()
    action = await call.collect(
        speech={"end_silence_timeout": 2.0},
        initial_timeout=10.0,
        start_input_timers=False,
    )

    # Start timers when ready
    await action.start_input_timers()

    event = await action.wait()

client.run()
```