llama-index-llms-openai 0.3.43__tar.gz → 0.3.44__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llama-index-llms-openai
3
- Version: 0.3.43
3
+ Version: 0.3.44
4
4
  Summary: llama-index llms openai integration
5
5
  Author: llama-index
6
6
  License-Expression: MIT
@@ -14,7 +14,7 @@ from openai.types.responses import (
14
14
  ResponseFunctionCallArgumentsDoneEvent,
15
15
  ResponseInProgressEvent,
16
16
  ResponseOutputItemAddedEvent,
17
- ResponseTextAnnotationDeltaEvent,
17
+ ResponseOutputTextAnnotationAddedEvent,
18
18
  ResponseTextDeltaEvent,
19
19
  ResponseWebSearchCallCompletedEvent,
20
20
  ResponseOutputItem,
@@ -588,7 +588,7 @@ class OpenAIResponses(FunctionCallingLLM):
588
588
 
589
589
  # clear the current tool call
590
590
  current_tool_call = None
591
- elif isinstance(event, ResponseTextAnnotationDeltaEvent):
591
+ elif isinstance(event, ResponseOutputTextAnnotationAddedEvent):
592
592
  # Annotations for the text
593
593
  annotations = additional_kwargs.get("annotations", [])
594
594
  annotations.append(event.annotation)
@@ -27,7 +27,7 @@ dev = [
27
27
 
28
28
  [project]
29
29
  name = "llama-index-llms-openai"
30
- version = "0.3.43"
30
+ version = "0.3.44"
31
31
  description = "llama-index llms openai integration"
32
32
  authors = [{name = "llama-index"}]
33
33
  requires-python = ">=3.9,<4.0"