use model_validate (#26182)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
This commit is contained in:
@@ -36,7 +36,7 @@ def process_trace_tasks(file_info):
|
||||
if trace_info.get("workflow_data"):
|
||||
trace_info["workflow_data"] = WorkflowRun.from_dict(data=trace_info["workflow_data"])
|
||||
if trace_info.get("documents"):
|
||||
trace_info["documents"] = [Document(**doc) for doc in trace_info["documents"]]
|
||||
trace_info["documents"] = [Document.model_validate(doc) for doc in trace_info["documents"]]
|
||||
|
||||
try:
|
||||
if trace_instance:
|
||||
|
||||
Reference in New Issue
Block a user