vibespot 1.6.3 → 1.6.4
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.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/settings.js +3 -0
package/package.json
CHANGED
package/ui/settings.js
CHANGED
|
@@ -1725,6 +1725,7 @@ function getModelsForEngine(engine) {
|
|
|
1725
1725
|
switch (engine) {
|
|
1726
1726
|
case "claude-code":
|
|
1727
1727
|
return [
|
|
1728
|
+
{ id: "claude-opus-4-8", label: "Claude Opus 4.8" },
|
|
1728
1729
|
{ id: "claude-opus-4-7", label: "Claude Opus 4.7" },
|
|
1729
1730
|
{ id: "claude-opus-4-6", label: "Claude Opus 4.6" },
|
|
1730
1731
|
{ id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
|
|
@@ -1734,6 +1735,7 @@ function getModelsForEngine(engine) {
|
|
|
1734
1735
|
case "anthropic-api":
|
|
1735
1736
|
case "claude-oauth":
|
|
1736
1737
|
return [
|
|
1738
|
+
{ id: "claude-opus-4-8", label: "Claude Opus 4.8" },
|
|
1737
1739
|
{ id: "claude-opus-4-7", label: "Claude Opus 4.7" },
|
|
1738
1740
|
{ id: "claude-opus-4-6", label: "Claude Opus 4.6" },
|
|
1739
1741
|
{ id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
|
|
@@ -1772,6 +1774,7 @@ function getModelsForEngine(engine) {
|
|
|
1772
1774
|
const ldModels = {
|
|
1773
1775
|
anthropic: [
|
|
1774
1776
|
{ id: "claude-sonnet-4-6", label: "Claude Sonnet 4.6 (default)" },
|
|
1777
|
+
{ id: "claude-opus-4-8", label: "Claude Opus 4.8" },
|
|
1775
1778
|
{ id: "claude-opus-4-7", label: "Claude Opus 4.7" },
|
|
1776
1779
|
{ id: "claude-opus-4-6", label: "Claude Opus 4.6" },
|
|
1777
1780
|
{ id: "claude-sonnet-4-5", label: "Claude Sonnet 4.5" },
|