mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
fix(router): fall back to the deployment voice without a conditional dict spread
This commit is contained in:
parent
4af62a38c1
commit
93fa989238
1 changed files with 1 additions and 1 deletions
|
|
@ -4518,7 +4518,7 @@ class Router:
|
|||
**{
|
||||
**data,
|
||||
"input": input,
|
||||
**({"voice": voice} if voice is not None else {}),
|
||||
"voice": data.get("voice") if voice is None else voice,
|
||||
"client": model_client,
|
||||
**kwargs,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue