mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
fix: failure in responses during construct metrics
This commit is contained in:
parent
a82b79ce57
commit
792cab01bb
1 changed files with 1 additions and 1 deletions
|
|
@ -417,7 +417,7 @@ class InferenceRouter(Inference):
|
||||||
prompt_tokens=chunk.usage.prompt_tokens,
|
prompt_tokens=chunk.usage.prompt_tokens,
|
||||||
completion_tokens=chunk.usage.completion_tokens,
|
completion_tokens=chunk.usage.completion_tokens,
|
||||||
total_tokens=chunk.usage.total_tokens,
|
total_tokens=chunk.usage.total_tokens,
|
||||||
model_id=fully_qualified_model_id,
|
fully_qualified_model_id=fully_qualified_model_id,
|
||||||
provider_id=provider_id,
|
provider_id=provider_id,
|
||||||
)
|
)
|
||||||
for metric in metrics:
|
for metric in metrics:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue