mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
feat: add Assembly AI STT
This commit is contained in:
parent
66b085dde2
commit
501d06c00d
7 changed files with 94 additions and 8 deletions
|
|
@ -45,6 +45,22 @@ whether they'd like to continue.
|
|||
|
||||
When the call starts, Dograh substitutes the values before sending the prompt to the LLM — so the agent speaks naturally as if it already knows the contact.
|
||||
|
||||
### Fallback values
|
||||
|
||||
If a variable might be missing or empty, use a pipe (`|`) to provide a default value:
|
||||
|
||||
```
|
||||
Hello {{customer_name | there}}, we're calling about your {{plan | current}} plan.
|
||||
```
|
||||
|
||||
When `customer_name` is not set, the agent will say "Hello there" instead of leaving a blank. The syntax is:
|
||||
|
||||
```
|
||||
{{variable_name | fallback_value}}
|
||||
```
|
||||
|
||||
If the variable is present and non-empty, the fallback is ignored and the actual value is used.
|
||||
|
||||
### Default variables
|
||||
|
||||
Built-in variables for current time and weekday, available in any prompt without setting up `initial_context`.
|
||||
|
|
|
|||
|
|
@ -234,7 +234,7 @@
|
|||
}
|
||||
},
|
||||
"banner": {
|
||||
"content": "🎉 **New: Pre-recorded Audio** — lower latency, reduced TTS costs, and natural-sounding conversations using your own voice recordings. [Learn more →](/voice-agent/pre-recorded-audio)",
|
||||
"content": "🎉 **New: Gemini Live 3.1 Support** — Try the latest Google Gemini Live 3.1 on Dograh platform. [Learn more →](/configurations/inference-providers#gemini-3-1-live)",
|
||||
"dismissible": true
|
||||
},
|
||||
"search": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue