Fix LLM provider selection in podcast handlers

- Remove hardcoded preferred_provider=huggingface in podcast handlers
- Set preferred_provider=None to respect GPT_PROVIDER env var
- Change default model from Qwen to gpt-oss-120b:cerebras (the model user had access to)
- WaveSpeed will now use gpt-oss-120b model instead of Qwen
This commit is contained in:
ajaysi
2026-04-01 06:54:37 +05:30
parent d06ab77e60
commit 746a5eeeb9
2 changed files with 5 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ Return JSON with:
prompt=prompt,
user_id=user_id,
json_struct=None,
preferred_provider="huggingface",
preferred_provider=None,
flow_type="premium_tool",
)
@@ -279,7 +279,7 @@ Requirements:
prompt=prompt,
user_id=user_id,
json_struct=None,
preferred_provider="huggingface",
preferred_provider=None,
flow_type="premium_tool",
)
except HTTPException: