llama-index-llms-bedrock-converse 0.10.1__tar.gz → 0.10.2__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-bedrock-converse
3
- Version: 0.10.1
3
+ Version: 0.10.2
4
4
  Summary: llama-index llms bedrock converse integration
5
5
  Author-email: Your Name <you@example.com>
6
6
  License-Expression: MIT
@@ -179,8 +179,8 @@ def is_reasoning(model_name: str) -> bool:
179
179
 
180
180
  def get_model_name(model_name: str) -> str:
181
181
  """Extract base model name from region-prefixed model identifier."""
182
- # Check for region prefixes (us, eu, apac)
183
- REGION_PREFIXES = ["us.", "eu.", "apac."]
182
+ # Check for region prefixes (us, eu, apac, global)
183
+ REGION_PREFIXES = ["us.", "eu.", "apac.", "global."]
184
184
 
185
185
  # If no region prefix, return the original model name
186
186
  if not any(prefix in model_name for prefix in REGION_PREFIXES):
@@ -29,7 +29,7 @@ dev = [
29
29
 
30
30
  [project]
31
31
  name = "llama-index-llms-bedrock-converse"
32
- version = "0.10.1"
32
+ version = "0.10.2"
33
33
  description = "llama-index llms bedrock converse integration"
34
34
  authors = [{name = "Your Name", email = "you@example.com"}]
35
35
  requires-python = ">=3.9,<4.0"