From 891d412f6a2692cc79ec5e53462b58a7914a02d0 Mon Sep 17 00:00:00 2001 From: Pratyush Shukla Date: Sat, 10 Aug 2024 23:09:03 +0530 Subject: [PATCH] fix typo --- agentops/llm_tracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agentops/llm_tracker.py b/agentops/llm_tracker.py index 0997e16d..0a282d67 100644 --- a/agentops/llm_tracker.py +++ b/agentops/llm_tracker.py @@ -655,7 +655,7 @@ def handle_stream_chunk(chunk: Message): self.llm_event.prompt_tokens = chunk.message.usage.input_tokens self.llm_event.completion = { "role": chunk.message.role, - "content": "", # Always returned as [] in the this instance type + "content": "", # Always returned as [] in this instance type } elif isinstance(chunk, RawContentBlockStartEvent): self.llm_event.completion["content"] += chunk.content_block.text