internal_fillers
An array of objects that define language-specific filler phrases for internal SWAIG functions. These fillers help break silence between responses and are played asynchronously during the function call.
Name | Type | Default | Description |
---|---|---|---|
internal_fillers Optional | object[] | - | An array of objects containing language-specific filler phrases for internal SWAIG functions. |
Internal Functions
Name | Type | Description |
---|---|---|
get_visual_input Optional | object | Filler phrases for when the AI Agent is running the get_visual_input function. |
Example
- YAML
- JSON
internal_fillers:
get_visual_input:
default:
- 'Analyzing visual input, please wait.'
- 'I am scanning my surroundings for data, this won''t take long.'
{
"internal_fillers": {
"get_visual_input": {
"default": [
"Analyzing visual input, please wait.",
"I am scanning my surroundings for data, this won't take long."
]
}
}
}