Skip to content

Commit e058f7d

Browse files
committed
refactor(models): rename model display names for clarity and consistency
- Updated display names for multiple Anthropic and OpenRouter models to shorter, clearer versions. - Removed deprecated Anthropic models: claude_3_7_sonnet, claude_opus_4, claude_opus_4_1, claude_sonnet_3_7. Test plan: - Verified that model display names are updated correctly in the codebase. - Ensured no references to deleted models remain. - Ran existing tests to confirm no regressions.
1 parent 1c0d51b commit e058f7d

115 files changed

Lines changed: 194 additions & 236 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_3_7_sonnet.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_fable_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ClaudeFable5Model(ModelDefinition):
2727
stop=None,
2828
),
2929
context_window=1000000,
30-
name="Claude Fable 5",
30+
name="Fable 5",
3131
owner="anthropic",
3232
description="Next-generation intelligence for long-running agents.",
3333
pricing={"prompt": "0.00001", "completion": "0.00005"},

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_haiku_4_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ClaudeHaiku45Model(ModelDefinition):
2626
stop=None,
2727
),
2828
context_window=200000,
29-
name="Claude Haiku 4.5",
29+
name="Haiku 4.5",
3030
owner="anthropic",
3131
description="The fastest model with near-frontier intelligence.",
3232
pricing={"prompt": "0.000001", "completion": "0.000005"},

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_opus_4.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_opus_4_1.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_opus_4_8.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ClaudeOpus48Model(ModelDefinition):
2525
stop=None,
2626
),
2727
context_window=1000000,
28-
name="Claude Opus 4.8",
28+
name="Opus 4.8",
2929
owner="anthropic",
3030
description="For complex agentic coding and enterprise work.",
3131
pricing={"prompt": "0.000005", "completion": "0.000025"},

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_sonnet_3_7.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

libs/naas-abi-marketplace/naas_abi_marketplace/ai/anthropic/models/claude_sonnet_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ClaudeSonnet5Model(ModelDefinition):
2525
stop=None,
2626
),
2727
context_window=1000000,
28-
name="Claude Sonnet 5",
28+
name="Sonnet 5",
2929
owner="anthropic",
3030
description="The best combination of speed and intelligence.",
3131
pricing={"prompt": "0.000003", "completion": "0.000015"},

libs/naas-abi-marketplace/naas_abi_marketplace/ai/openrouter/models/anthropic/claude_3_5_haiku.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Claude35HaikuModel(ModelDefinition):
3030
base_url=OPENROUTER_BASE_URL,
3131
),
3232
context_window=200000,
33-
name="Anthropic: Claude 3.5 Haiku",
33+
name="3.5 Haiku",
3434
owner="anthropic",
3535
description="Claude 3.5 Haiku features offers enhanced capabilities in speed, coding accuracy, and tool use. Engineered to excel in real-time applications, it delivers quick response times that are essential for dynamic...",
3636
canonical_slug="anthropic/claude-3-5-haiku",

libs/naas-abi-marketplace/naas_abi_marketplace/ai/openrouter/models/anthropic/claude_3_haiku.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Claude3HaikuModel(ModelDefinition):
3030
base_url=OPENROUTER_BASE_URL,
3131
),
3232
context_window=200000,
33-
name="Anthropic: Claude 3 Haiku",
33+
name="3 Haiku",
3434
owner="anthropic",
3535
description="Claude 3 Haiku is Anthropic's fastest and most compact model for\nnear-instant responsiveness. Quick and accurate targeted performance.\n\nSee the launch announcement and benchmark results [here](https://www.anthropic.com/news/claude-3-haiku)\n\n#multimodal",
3636
canonical_slug="anthropic/claude-3-haiku",

0 commit comments

Comments
 (0)