Reformat code

This commit is contained in:
itqop 2025-07-19 17:35:09 +03:00
parent 900065b158
commit 75e23de4ba
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ def guardrails_node(state: EmailGenerationState) -> EmailGenerationState:
meta = {
"locale": lead_model.locale if lead_model else "ru",
"lead_normalized": lead_model.dict() if lead_model else {},
"lead_normalized": lead_model.model_dump() if lead_model else {},
"used_chunks": email_draft.used_chunks,
"model": llm_output.model if llm_output else "unknown",
"tokens_prompt": llm_output.tokens_prompt if llm_output else 0,