From 6bc78e13621ac5648bfade353a5701973b68ca19 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 18 Aug 2025 10:06:00 +0200 Subject: [PATCH] Updated TODO --- src/metrics/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/metrics/__init__.py b/src/metrics/__init__.py index 0c424498..05c8a03e 100644 --- a/src/metrics/__init__.py +++ b/src/metrics/__init__.py @@ -41,11 +41,13 @@ ) # TODO(lucasagomes): Add metric for token usage +# https://issues.redhat.com/browse/LCORE-411 llm_token_sent_total = Counter( "ls_llm_token_sent_total", "LLM tokens sent", ["provider", "model"] ) # TODO(lucasagomes): Add metric for token usage +# https://issues.redhat.com/browse/LCORE-411 llm_token_received_total = Counter( "ls_llm_token_received_total", "LLM tokens received", ["provider", "model"] )