瀏覽代碼

fix: debug run not show total right tokens (#3843)

Joel 1 年之前
父節點
當前提交
019d7069f8
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      web/app/components/workflow/nodes/_base/hooks/use-one-step-run.ts

+ 1 - 0
web/app/components/workflow/nodes/_base/hooks/use-one-step-run.ts

@@ -182,6 +182,7 @@ const useOneStepRun = <T>({
     finally {
       setRunResult({
         ...res,
+        total_tokens: res.execution_metadata?.total_tokens || 0,
         created_by: res.created_by_account?.name || '',
       })
     }