mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-19 08:28:10 +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
|
|
@ -26,7 +26,8 @@ def extract_template_variables(text: str) -> Set[str]:
|
|||
if "." in var_name:
|
||||
continue
|
||||
# Skip variables with a fallback (they have a default value)
|
||||
if filter_name == "fallback":
|
||||
# Supports both {{var | default}} and legacy {{var | fallback:default}}
|
||||
if filter_name is not None:
|
||||
continue
|
||||
# Skip system-injected variables
|
||||
if var_name in _SYSTEM_VARIABLES:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue