Backoff
Requested initial delay, growth factor and upper bound for tool-call retries. The current generation workflow stores this configuration but does not schedule retries from it.
Usage profiles
| Usage | Fields and validation |
|---|---|
| In requests | View fields |
| In responses | View fields |
| In webhook payloads | View fields |
In requests
API JSON uses JSON field names (camelCase).
| Field | Type | Presence | Meaning |
|---|---|---|---|
initialMs | integer (int32) | Optional | Requested initial retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
multiplier | number (double) or string (NaN, Infinity, -Infinity) | Optional | Requested retry-delay multiplier; not applied by the current generation workflow. |
maxMs | integer (int32) | Optional | Requested maximum retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
In responses
API JSON uses JSON field names (camelCase).
| Field | Type | Presence | Meaning |
|---|---|---|---|
initialMs | integer (int32) | Optional | Requested initial retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
multiplier | number (double) or string (NaN, Infinity, -Infinity) | Optional | Requested retry-delay multiplier; not applied by the current generation workflow. |
maxMs | integer (int32) | Optional | Requested maximum retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
In webhook payloads
Webhook JSON uses protobuf field names (snake_case).
| Field | Type | Presence | Meaning |
|---|---|---|---|
initial_ms | integer (int32) | Optional | Requested initial retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
multiplier | number (double) or string (NaN, Infinity, -Infinity) | Optional | Requested retry-delay multiplier; not applied by the current generation workflow. |
max_ms | integer (int32) | Optional | Requested maximum retry delay in milliseconds; not applied by the current generation workflow. Minimum: -2147483648. Maximum: 2147483647. |
Where used
| Reference | Relationship |
|---|---|
| Create an agent profile | POST /api/v1/agent-profiles/create |
| Import a prompt library | POST /api/v1/agent-profiles/import |
| Update an agent profile | POST /api/v1/agent-profiles/update |
| Append a message without generating | POST /api/v1/llm/append-message |
| Create a new conversation thread | POST /api/v1/llm/create-thread |
| Send a message to a conversation | POST /api/v1/llm/send-message |
| Send a message and wait for the result | POST /api/v1/llm/send-message-sync |
| Update context management settings | POST /api/v1/llm/update-context-management-settings |
| Update default generation config | POST /api/v1/llm/update-default-generation-config |
| Update conversation settings | POST /api/v1/llm/update-settings |
| Update the caller's default generation config | POST /api/v1/enduser/update-generation-config |
| Get an agent profile | POST /api/v1/agent-profiles/get |
| List agent profiles | POST /api/v1/agent-profiles/list |
| Withdraw your rating on a message | POST /api/v1/llm/delete-message-rating |
| Get full conversation state | POST /api/v1/llm/conversation-state |
| Rate an assistant message | POST /api/v1/llm/rate-message |
| Submit client-side tool results and wait for the next segment | POST /api/v1/llm/submit-client-tool-results-sync |
| Update prompt variables | POST /api/v1/llm/update-prompt-variables |
| Get the caller's end-user profile | POST /api/v1/enduser/get |
| Generation configuration | API JSON uses JSON field names (camelCase). |
| llm.generation_started | Webhook JSON uses protobuf field names (snake_case). |
| llm.message_published | Webhook JSON uses protobuf field names (snake_case). |
| ToolExecutionPolicy | Nested in model |
| ToolExecutionPolicy | Nested in model |
| ToolExecutionPolicy | Nested in model |
Download the public reference contract.
Document: DOC-API-MODEL-backoff.