@mawaru/sdk 0.27.0 → 0.28.0
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/_schemas/ai-manifest.ts
CHANGED
|
@@ -5,6 +5,8 @@ import { jsonSchemaSchema, PORT_KEY_PATTERN } from "./node.js"
|
|
|
5
5
|
// エイリアス("opus" 等)は採らずバージョンを固定する:実行のたびに黙って別モデルへ
|
|
6
6
|
// 乗り換わると品質も費用も再現しないため。新モデルが出たらこの配列を足して SDK を publish する
|
|
7
7
|
export const AI_MODELS = [
|
|
8
|
+
"claude-fable-5-1",
|
|
9
|
+
"claude-fable-5",
|
|
8
10
|
"claude-opus-5",
|
|
9
11
|
"claude-opus-4-8",
|
|
10
12
|
"claude-sonnet-5",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const AI_MODELS: readonly ["claude-opus-5", "claude-opus-4-8", "claude-sonnet-5", "claude-haiku-4-5"];
|
|
2
|
+
export declare const AI_MODELS: readonly ["claude-fable-5-1", "claude-fable-5", "claude-opus-5", "claude-opus-4-8", "claude-sonnet-5", "claude-haiku-4-5"];
|
|
3
3
|
export declare const aiModelSchema: z.ZodEnum<{
|
|
4
|
+
"claude-fable-5-1": "claude-fable-5-1";
|
|
5
|
+
"claude-fable-5": "claude-fable-5";
|
|
4
6
|
"claude-opus-5": "claude-opus-5";
|
|
5
7
|
"claude-opus-4-8": "claude-opus-4-8";
|
|
6
8
|
"claude-sonnet-5": "claude-sonnet-5";
|
|
@@ -18,6 +20,8 @@ export declare const aiManifestSchema: z.ZodObject<{
|
|
|
18
20
|
description: z.ZodOptional<z.ZodString>;
|
|
19
21
|
prompt: z.ZodString;
|
|
20
22
|
model: z.ZodDefault<z.ZodEnum<{
|
|
23
|
+
"claude-fable-5-1": "claude-fable-5-1";
|
|
24
|
+
"claude-fable-5": "claude-fable-5";
|
|
21
25
|
"claude-opus-5": "claude-opus-5";
|
|
22
26
|
"claude-opus-4-8": "claude-opus-4-8";
|
|
23
27
|
"claude-sonnet-5": "claude-sonnet-5";
|
|
@@ -4,6 +4,8 @@ import { jsonSchemaSchema, PORT_KEY_PATTERN } from "./node.js";
|
|
|
4
4
|
// エイリアス("opus" 等)は採らずバージョンを固定する:実行のたびに黙って別モデルへ
|
|
5
5
|
// 乗り換わると品質も費用も再現しないため。新モデルが出たらこの配列を足して SDK を publish する
|
|
6
6
|
export const AI_MODELS = [
|
|
7
|
+
"claude-fable-5-1",
|
|
8
|
+
"claude-fable-5",
|
|
7
9
|
"claude-opus-5",
|
|
8
10
|
"claude-opus-4-8",
|
|
9
11
|
"claude-sonnet-5",
|