import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.conversationConfig.getBridgePhrasesConfig({});
console.log(result);
}
run();{
"first_slow_messages": [
"<string>"
],
"very_slow_messages": [
"<string>"
],
"tool_responses": [
"<string>"
],
"localized": {}
}Get the bridge phrases configuration.
import { SyllableSDK } from "syllable-sdk";
const syllableSDK = new SyllableSDK({
apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "",
});
async function run() {
const result = await syllableSDK.conversationConfig.getBridgePhrasesConfig({});
console.log(result);
}
run();{
"first_slow_messages": [
"<string>"
],
"very_slow_messages": [
"<string>"
],
"tool_responses": [
"<string>"
],
"localized": {}
}Agent ID to fetch config for
Tool name to fetch config for
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.
Messages to say when the agent is first delayed.
Messages to say when the agent is significantly delayed.
Messages to say when a tool call is in progress.
Per-language overrides keyed by BCP-47 tag (e.g. "es-US").
Show child attributes