From a0cc9ee1826707d5071a3e0461cc072f68251d1e Mon Sep 17 00:00:00 2001 From: Ali Waleed <134522290+alizenhom@users.noreply.github.com> Date: Wed, 26 Jun 2024 19:47:06 +0300 Subject: [PATCH] change chunk naming --- src/python/langtrace/trace_attributes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/langtrace/trace_attributes/__init__.py b/src/python/langtrace/trace_attributes/__init__.py index 40d85c0..7e5a11a 100644 --- a/src/python/langtrace/trace_attributes/__init__.py +++ b/src/python/langtrace/trace_attributes/__init__.py @@ -49,7 +49,7 @@ class SpanAttributes(Enum): LLM_REQUEST_REPETITION_PENALTY = "gen_ai.request.repetition_penalty" LLM_RESPONSE_FINISH_REASON = "gen_ai.response.finish_reasons" LLM_RESPONSE_STOP_REASON = "gen_ai.response.stop_reason" - LLM_CONTENT_COMPLETION_CHUNK = "gen_ai.content.completion.chunk" + LLM_CONTENT_COMPLETION_CHUNK = "gen_ai.completion.chunk" # embeddings LLM_REQUEST_EMBEDDING_INPUTS = "gen_ai.request.embedding_inputs"