"lib/vscode:/vscode.git/clone" did not exist on "22fb3398ad9bbebbed863b929f889911fda4faee"
Unverified Commit 68235126 authored by Qidong Su's avatar Qidong Su Committed by GitHub
Browse files

fix: pass back `usage` when using text mode with VLLM (#5336)


Signed-off-by: default avatarQidong Su <soodoshll@gmail.com>
parent c8770464
......@@ -1300,6 +1300,11 @@ class DecodeWorkerHandler(BaseWorkerHandler):
"choices": [choice_data],
}
if output.finish_reason:
chunk["usage"] = BaseWorkerHandler._build_completion_usage(
request_output=res,
)
yield chunk
except EngineDeadError as e:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment