llama-index-llms-openai 0.3.34__tar.gz → 0.3.35__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.1
2
2
  Name: llama-index-llms-openai
3
- Version: 0.3.34
3
+ Version: 0.3.35
4
4
  Summary: llama-index llms openai integration
5
5
  License: MIT
6
6
  Author: llama-index
@@ -92,6 +92,13 @@ GPT4_MODELS: Dict[str, int] = {
92
92
  # 0314 models
93
93
  "gpt-4-0314": 8192,
94
94
  "gpt-4-32k-0314": 32768,
95
+ # GPT 4.1 Models
96
+ "gpt-4.1": 1047576,
97
+ "gpt-4.1-mini": 1047576,
98
+ "gpt-4.1-nano": 1047576,
99
+ "gpt-4.1-2025-04-14": 1047576,
100
+ "gpt-4.1-mini-2025-04-14": 1047576,
101
+ "gpt-4.1-nano-2025-04-14": 1047576,
95
102
  }
96
103
 
97
104
  AZURE_TURBO_MODELS: Dict[str, int] = {
@@ -28,7 +28,7 @@ exclude = ["**/BUILD"]
28
28
  license = "MIT"
29
29
  name = "llama-index-llms-openai"
30
30
  readme = "README.md"
31
- version = "0.3.34"
31
+ version = "0.3.35"
32
32
 
33
33
  [tool.poetry.dependencies]
34
34
  python = ">=3.9,<4.0"