Skip to main content
PUT
/
api
/
v1
/
conversation-config
/
bridges
Typescript (SDK)
import { SyllableSDK } from "syllable-sdk";

const syllableSDK = new SyllableSDK({
  apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});

async function run() {
  const result = await syllableSDK.conversationConfig.updateBridgePhrasesConfig({
    bridgePhrasesConfig: {},
  });

  console.log(result);
}

run();
{
  "first_slow_messages": [
    "<string>"
  ],
  "very_slow_messages": [
    "<string>"
  ],
  "tool_responses": [
    "<string>"
  ],
  "localized": {}
}

Authorizations

Syllable-API-Key
string
header
required

Query Parameters

agent_id
integer | null

Agent ID to update config for

tool_name
string | null

Tool name to update config for

Body

application/json

Configuration for conversational bridge phrases.

Top-level fields are the default (English) phrases. The localized dict provides per-language overrides keyed by BCP-47 language tag.

first_slow_messages
string[]

Messages to say when the agent is first delayed.

very_slow_messages
string[]

Messages to say when the agent is significantly delayed.

tool_responses
string[]

Messages to say when a tool call is in progress.

localized
Localized · object

Per-language overrides keyed by BCP-47 tag (e.g. "es-US").

Response

Successful Response

Configuration for conversational bridge phrases.

Top-level fields are the default (English) phrases. The localized dict provides per-language overrides keyed by BCP-47 language tag.

first_slow_messages
string[]

Messages to say when the agent is first delayed.

very_slow_messages
string[]

Messages to say when the agent is significantly delayed.

tool_responses
string[]

Messages to say when a tool call is in progress.

localized
Localized · object

Per-language overrides keyed by BCP-47 tag (e.g. "es-US").