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