mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-29 20:20:22 +00:00
log main_model_group when router.acompletion has an unexpected error (#249)
This commit is contained in:
parent
b6a85cf3a5
commit
a1fa5ee4e0
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class LLMAPIHandlerFactory:
|
|||
except openai.OpenAIError as e:
|
||||
raise LLMProviderError(llm_key) from e
|
||||
except Exception as e:
|
||||
LOG.exception("LLM request failed unexpectedly", llm_key=llm_key)
|
||||
LOG.exception("LLM request failed unexpectedly", llm_key=llm_key, model=main_model_group)
|
||||
raise LLMProviderError(llm_key) from e
|
||||
|
||||
if step:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue