llama-index-llms-openai 0.4.2__tar.gz → 0.4.3__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.4.2
3
+ Version: 0.4.3
4
4
  Summary: llama-index llms openai integration
5
5
  Author: llama-index
6
6
  License-Expression: MIT
@@ -831,7 +831,10 @@ class OpenAIResponses(FunctionCallingLLM):
831
831
 
832
832
  # openai responses api has a slightly different tool spec format
833
833
  tool_specs = [
834
- {"type": "function", **tool.metadata.to_openai_tool()["function"]}
834
+ {
835
+ "type": "function",
836
+ **tool.metadata.to_openai_tool(skip_length_check=True)["function"],
837
+ }
835
838
  for tool in tools
836
839
  ]
837
840
 
@@ -27,7 +27,7 @@ dev = [
27
27
 
28
28
  [project]
29
29
  name = "llama-index-llms-openai"
30
- version = "0.4.2"
30
+ version = "0.4.3"
31
31
  description = "llama-index llms openai integration"
32
32
  authors = [{name = "llama-index"}]
33
33
  requires-python = ">=3.9,<4.0"