agentcode-cli 1.2.2__tar.gz → 1.3.0__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: agentcode-cli
3
- Version: 1.2.2
3
+ Version: 1.3.0
4
4
  Summary: An open, multi-model agentic coding CLI — inspired by Claude Code
5
5
  Author: Vignesh Pai
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentcode-cli
3
- Version: 1.2.2
3
+ Version: 1.3.0
4
4
  Summary: An open, multi-model agentic coding CLI — inspired by Claude Code
5
5
  Author: Vignesh Pai
6
6
  License: MIT License
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentcode-cli"
3
- version = "1.2.2"
3
+ version = "1.3.0"
4
4
  description = "An open, multi-model agentic coding CLI — inspired by Claude Code"
5
5
  readme = "README.md"
6
6
  license = {file = "LICENSE"}
@@ -47,20 +47,11 @@ GEMINI_TIERS = [
47
47
  ModelTier("gemini/gemini-2.5-pro", "heavy", "Gemini 2.5 Pro", 1.25, 10.00),
48
48
  ]
49
49
 
50
- # Azure deployment names are user-defined, so tiers use common defaults.
51
- # Users can override via settings.json model.light/medium/heavy.
52
- AZURE_TIERS = [
53
- ModelTier("azure/gpt-4o-mini", "light", "Azure GPT-4o Mini", 0.15, 0.60),
54
- ModelTier("azure/gpt-4o", "medium", "Azure GPT-4o", 2.50, 10.00),
55
- ModelTier("azure/gpt-4o", "heavy", "Azure GPT-4o", 2.50, 10.00),
56
- ]
57
-
58
50
  # Provider configs keyed by prefix
59
51
  PROVIDER_TIERS = {
60
52
  "anthropic": ANTHROPIC_TIERS,
61
53
  "openai": OPENAI_TIERS,
62
54
  "gemini": GEMINI_TIERS,
63
- "azure": AZURE_TIERS,
64
55
  }
65
56
 
66
57
 
@@ -212,9 +203,7 @@ class ModelRouter:
212
203
  def detect_provider(self, model_string: str) -> str:
213
204
  """Detect provider from a model string."""
214
205
  m = model_string.lower()
215
- if m.startswith("azure/"):
216
- return "azure"
217
- elif "claude" in m or "anthropic" in m:
206
+ if "claude" in m or "anthropic" in m:
218
207
  return "anthropic"
219
208
  elif "gpt" in m or "openai" in m or "o1" in m or "o3" in m:
220
209
  return "openai"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes