Skip to main content
GET
/
api
/
v1
/
conversation-config
/
bridges
Python (SDK)
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.conversation_config.get_bridge_phrases_config()

    # Handle response
    print(res)
{
  "first_slow_messages": [
    "<string>"
  ],
  "very_slow_messages": [
    "<string>"
  ],
  "tool_responses": [
    "<string>"
  ],
  "metadata": {
    "hash": "<string>",
    "source": "<string>",
    "entries": 0
  }
}

Authorizations

Syllable-API-Key
string
header
required

Query Parameters

agent_id
integer | null

Agent ID to fetch config for

tool_name
string | null

Tool name to fetch config for

Response

Successful Response

Configuration for conversational bridge phrases.

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.

metadata
object

Metadata about the configuration.