Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to convert css shape to string shape by LLM log should be warning #1197

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion skyvern/forge/agent_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,12 @@ async def _convert_css_shape_to_string(
)
return None
except Exception:
LOG.exception(
LOG.warning(
"Failed to convert css shape to string shape by LLM",
task_id=task.task_id,
step_id=step.step_id,
element_id=element_id,
exc_info=True,
)
return None

Expand Down
Loading