@ssweens/pi-vertex 1.1.12 → 1.1.13
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/CHANGELOG.md +4 -0
- package/models/claude.ts +27 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.1.13] - 2026-06-09
|
|
6
|
+
### Added
|
|
7
|
+
- **Claude Fable 5** (`claude-fable-5`) — Anthropic's first public Mythos-class model, positioned above Opus 4.8. 1M context, 128K max output, text/image/file input, reasoning (adaptive thinking always on), tools. $10/$50 per 1M tokens (global), $1/1M cache read, 10% regional premium. Available on Vertex AI Model Garden.
|
|
8
|
+
|
|
5
9
|
## [1.1.12] - 2026-06-03
|
|
6
10
|
### Added
|
|
7
11
|
- **Claude Opus 4.8** (`claude-opus-4-8`) — added the new Vertex/Gemini Enterprise Agent Platform Anthropic partner model with 1M context, 128K max output tokens, and the same published global/regional pricing tier used by Opus 4.7.
|
package/models/claude.ts
CHANGED
|
@@ -11,6 +11,33 @@
|
|
|
11
11
|
import type { VertexModelConfig } from "../types.js";
|
|
12
12
|
|
|
13
13
|
export const CLAUDE_MODELS: VertexModelConfig[] = [
|
|
14
|
+
// Claude Fable 5 (Mythos-class)
|
|
15
|
+
{
|
|
16
|
+
id: "claude-fable-5",
|
|
17
|
+
name: "Claude Fable 5",
|
|
18
|
+
apiId: "claude-fable-5",
|
|
19
|
+
publisher: "anthropic",
|
|
20
|
+
endpointType: "maas",
|
|
21
|
+
contextWindow: 1000000,
|
|
22
|
+
maxTokens: 128000,
|
|
23
|
+
input: ["text", "image", "file"],
|
|
24
|
+
reasoning: true,
|
|
25
|
+
tools: true,
|
|
26
|
+
cost: {
|
|
27
|
+
input: 10.00,
|
|
28
|
+
output: 50.00,
|
|
29
|
+
cacheRead: 1.00,
|
|
30
|
+
cacheWrite: 12.50,
|
|
31
|
+
},
|
|
32
|
+
costRegional: {
|
|
33
|
+
input: 11.00,
|
|
34
|
+
output: 55.00,
|
|
35
|
+
cacheRead: 1.10,
|
|
36
|
+
cacheWrite: 13.75,
|
|
37
|
+
},
|
|
38
|
+
region: "global",
|
|
39
|
+
},
|
|
40
|
+
|
|
14
41
|
// Claude 4.8 series
|
|
15
42
|
{
|
|
16
43
|
id: "claude-opus-4-8",
|