feat: add Assembly AI STT

This commit is contained in:
Abhishek Kumar 2026-04-03 07:10:37 +05:30
parent 66b085dde2
commit 501d06c00d
7 changed files with 94 additions and 8 deletions

View file

@ -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: