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>"
]
}Get the bridge phrases configuration.
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>"
]
}Agent ID to fetch config for
Tool name to fetch config for
Successful Response