mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 18:27:53 +08:00
fix: wrong token usage in iteration node for streaming result (#5336)
This commit is contained in:
parent
132f5fb3de
commit
9b7fdadce4
@ -367,7 +367,7 @@ class IterationNodeNextStreamResponse(StreamResponse):
|
||||
|
||||
class IterationNodeCompletedStreamResponse(StreamResponse):
|
||||
"""
|
||||
NodeStartStreamResponse entity
|
||||
NodeCompletedStreamResponse entity
|
||||
"""
|
||||
class Data(BaseModel):
|
||||
"""
|
||||
@ -385,6 +385,7 @@ class IterationNodeCompletedStreamResponse(StreamResponse):
|
||||
error: Optional[str] = None
|
||||
elapsed_time: float
|
||||
total_tokens: int
|
||||
execution_metadata: Optional[dict] = None
|
||||
finished_at: int
|
||||
steps: int
|
||||
|
||||
|
@ -95,6 +95,9 @@ class WorkflowIterationCycleManage(WorkflowCycleStateManager):
|
||||
error=None,
|
||||
elapsed_time=time.perf_counter() - current_iteration.started_at,
|
||||
total_tokens=current_iteration.total_tokens,
|
||||
execution_metadata={
|
||||
'total_tokens': current_iteration.total_tokens,
|
||||
},
|
||||
finished_at=int(time.time()),
|
||||
steps=current_iteration.current_index
|
||||
)
|
||||
@ -276,6 +279,9 @@ class WorkflowIterationCycleManage(WorkflowCycleStateManager):
|
||||
error=error,
|
||||
elapsed_time=time.perf_counter() - current_iteration.started_at,
|
||||
total_tokens=current_iteration.total_tokens,
|
||||
execution_metadata={
|
||||
'total_tokens': current_iteration.total_tokens,
|
||||
},
|
||||
finished_at=int(time.time()),
|
||||
steps=current_iteration.current_index
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user