@bendyline/gezel 1.1.0 → 1.1.1
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/checks/index.js +8 -3
- package/dist/{index-C7jST61L.d.ts → index-BagGCdN3.d.ts} +1819 -1206
- package/dist/index.d.ts +60 -9
- package/dist/index.js +13219 -11822
- package/dist/markdown/index.d.ts +1 -1
- package/dist/markdown/index.js +780 -718
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +1 -1
- package/dist/paths.js +64 -2
- package/dist/{report-action-Dn_QrwwK.d.ts → report-action-BCqCZQiu.d.ts} +72 -0
- package/dist/schemas/index.d.ts +3 -3
- package/dist/schemas/index.js +6857 -6626
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import './report-action-
|
|
2
|
+
import './report-action-BCqCZQiu.js';
|
|
3
3
|
import '@bendyline/gezk';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -12781,14 +12781,29 @@ declare const RunRecordingActorSchema: z.ZodObject<{
|
|
|
12781
12781
|
skin2: z.ZodString;
|
|
12782
12782
|
hair: z.ZodString;
|
|
12783
12783
|
hairShape: z.ZodEnum<{
|
|
12784
|
+
medium: "medium";
|
|
12784
12785
|
halo: "halo";
|
|
12785
12786
|
short: "short";
|
|
12787
|
+
bob: "bob";
|
|
12786
12788
|
long: "long";
|
|
12789
|
+
"extra-long": "extra-long";
|
|
12787
12790
|
bun: "bun";
|
|
12788
12791
|
braids: "braids";
|
|
12789
12792
|
shaved: "shaved";
|
|
12790
12793
|
bald: "bald";
|
|
12791
12794
|
}>;
|
|
12795
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
12796
|
+
straight: "straight";
|
|
12797
|
+
short: "short";
|
|
12798
|
+
"side-swept": "side-swept";
|
|
12799
|
+
curtain: "curtain";
|
|
12800
|
+
}>>>>;
|
|
12801
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
12802
|
+
none: "none";
|
|
12803
|
+
center: "center";
|
|
12804
|
+
left: "left";
|
|
12805
|
+
right: "right";
|
|
12806
|
+
}>>>;
|
|
12792
12807
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
12793
12808
|
cap: "cap";
|
|
12794
12809
|
beanie: "beanie";
|
|
@@ -13166,346 +13181,376 @@ declare const RunRecordingSchema: z.ZodObject<{
|
|
|
13166
13181
|
skin2: z.ZodString;
|
|
13167
13182
|
hair: z.ZodString;
|
|
13168
13183
|
hairShape: z.ZodEnum<{
|
|
13184
|
+
medium: "medium";
|
|
13169
13185
|
halo: "halo";
|
|
13170
13186
|
short: "short";
|
|
13187
|
+
bob: "bob";
|
|
13171
13188
|
long: "long";
|
|
13189
|
+
"extra-long": "extra-long";
|
|
13172
13190
|
bun: "bun";
|
|
13173
13191
|
braids: "braids";
|
|
13174
13192
|
shaved: "shaved";
|
|
13175
13193
|
bald: "bald";
|
|
13176
13194
|
}>;
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
newsboy: "newsboy";
|
|
13183
|
-
hood: "hood";
|
|
13184
|
-
}>>>>;
|
|
13185
|
-
dress: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13186
|
-
scarf: "scarf";
|
|
13187
|
-
apron: "apron";
|
|
13188
|
-
collar: "collar";
|
|
13189
|
-
turtleneck: "turtleneck";
|
|
13190
|
-
}>>>>;
|
|
13191
|
-
accessory: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13192
|
-
glasses: "glasses";
|
|
13193
|
-
sunglasses: "sunglasses";
|
|
13194
|
-
cateye: "cateye";
|
|
13195
|
-
readers: "readers";
|
|
13196
|
-
monocle: "monocle";
|
|
13197
|
-
eyepatch: "eyepatch";
|
|
13198
|
-
earrings: "earrings";
|
|
13199
|
-
"earring-left": "earring-left";
|
|
13200
|
-
"earring-right": "earring-right";
|
|
13201
|
-
flower: "flower";
|
|
13202
|
-
hairclip: "hairclip";
|
|
13203
|
-
headband: "headband";
|
|
13204
|
-
bowtie: "bowtie";
|
|
13205
|
-
necklace: "necklace";
|
|
13206
|
-
brooch: "brooch";
|
|
13207
|
-
facemask: "facemask";
|
|
13208
|
-
goggles: "goggles";
|
|
13209
|
-
"safety-glasses": "safety-glasses";
|
|
13210
|
-
"pince-nez": "pince-nez";
|
|
13211
|
-
headphones: "headphones";
|
|
13212
|
-
"hearing-aid": "hearing-aid";
|
|
13213
|
-
"nose-ring": "nose-ring";
|
|
13214
|
-
"hoop-earrings": "hoop-earrings";
|
|
13215
|
-
"drop-earrings": "drop-earrings";
|
|
13216
|
-
"pearl-earrings": "pearl-earrings";
|
|
13217
|
-
bandage: "bandage";
|
|
13218
|
-
feather: "feather";
|
|
13219
|
-
pencil: "pencil";
|
|
13220
|
-
ribbon: "ribbon";
|
|
13221
|
-
necktie: "necktie";
|
|
13222
|
-
cravat: "cravat";
|
|
13223
|
-
"bolo-tie": "bolo-tie";
|
|
13224
|
-
lanyard: "lanyard";
|
|
13225
|
-
medal: "medal";
|
|
13226
|
-
"pocket-square": "pocket-square";
|
|
13227
|
-
"tool-pendant": "tool-pendant";
|
|
13228
|
-
}>>>>;
|
|
13229
|
-
facialHair: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13230
|
-
beard: "beard";
|
|
13231
|
-
mustache: "mustache";
|
|
13232
|
-
}>>>>;
|
|
13233
|
-
mark: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13234
|
-
freckles: "freckles";
|
|
13235
|
-
mole: "mole";
|
|
13195
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13196
|
+
straight: "straight";
|
|
13197
|
+
short: "short";
|
|
13198
|
+
"side-swept": "side-swept";
|
|
13199
|
+
curtain: "curtain";
|
|
13236
13200
|
}>>>>;
|
|
13237
|
-
|
|
13238
|
-
|
|
13239
|
-
|
|
13240
|
-
|
|
13241
|
-
|
|
13242
|
-
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
|
|
13246
|
-
|
|
13247
|
-
|
|
13248
|
-
|
|
13249
|
-
|
|
13250
|
-
|
|
13251
|
-
|
|
13252
|
-
|
|
13201
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13202
|
+
none: "none";
|
|
13203
|
+
center: "center";
|
|
13204
|
+
left: "left";
|
|
13205
|
+
right: "right";
|
|
13206
|
+
}>>>;
|
|
13207
|
+
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13208
|
+
cap: "cap";
|
|
13209
|
+
beanie: "beanie";
|
|
13210
|
+
kerchief: "kerchief";
|
|
13211
|
+
straw: "straw";
|
|
13212
|
+
newsboy: "newsboy";
|
|
13213
|
+
hood: "hood";
|
|
13214
|
+
}>>>>;
|
|
13215
|
+
dress: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13216
|
+
scarf: "scarf";
|
|
13217
|
+
apron: "apron";
|
|
13218
|
+
collar: "collar";
|
|
13219
|
+
turtleneck: "turtleneck";
|
|
13220
|
+
}>>>>;
|
|
13221
|
+
accessory: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13222
|
+
glasses: "glasses";
|
|
13223
|
+
sunglasses: "sunglasses";
|
|
13224
|
+
cateye: "cateye";
|
|
13225
|
+
readers: "readers";
|
|
13226
|
+
monocle: "monocle";
|
|
13227
|
+
eyepatch: "eyepatch";
|
|
13228
|
+
earrings: "earrings";
|
|
13229
|
+
"earring-left": "earring-left";
|
|
13230
|
+
"earring-right": "earring-right";
|
|
13231
|
+
flower: "flower";
|
|
13232
|
+
hairclip: "hairclip";
|
|
13233
|
+
headband: "headband";
|
|
13234
|
+
bowtie: "bowtie";
|
|
13235
|
+
necklace: "necklace";
|
|
13236
|
+
brooch: "brooch";
|
|
13237
|
+
facemask: "facemask";
|
|
13238
|
+
goggles: "goggles";
|
|
13239
|
+
"safety-glasses": "safety-glasses";
|
|
13240
|
+
"pince-nez": "pince-nez";
|
|
13241
|
+
headphones: "headphones";
|
|
13242
|
+
"hearing-aid": "hearing-aid";
|
|
13243
|
+
"nose-ring": "nose-ring";
|
|
13244
|
+
"hoop-earrings": "hoop-earrings";
|
|
13245
|
+
"drop-earrings": "drop-earrings";
|
|
13246
|
+
"pearl-earrings": "pearl-earrings";
|
|
13247
|
+
bandage: "bandage";
|
|
13248
|
+
feather: "feather";
|
|
13249
|
+
pencil: "pencil";
|
|
13250
|
+
ribbon: "ribbon";
|
|
13251
|
+
necktie: "necktie";
|
|
13252
|
+
cravat: "cravat";
|
|
13253
|
+
"bolo-tie": "bolo-tie";
|
|
13254
|
+
lanyard: "lanyard";
|
|
13255
|
+
medal: "medal";
|
|
13256
|
+
"pocket-square": "pocket-square";
|
|
13257
|
+
"tool-pendant": "tool-pendant";
|
|
13258
|
+
}>>>>;
|
|
13259
|
+
facialHair: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13260
|
+
beard: "beard";
|
|
13261
|
+
mustache: "mustache";
|
|
13262
|
+
}>>>>;
|
|
13263
|
+
mark: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13264
|
+
freckles: "freckles";
|
|
13265
|
+
mole: "mole";
|
|
13266
|
+
}>>>>;
|
|
13267
|
+
expression: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13268
|
+
smile: "smile";
|
|
13269
|
+
wider: "wider";
|
|
13270
|
+
neutral: "neutral";
|
|
13271
|
+
wink: "wink";
|
|
13272
|
+
sleepy: "sleepy";
|
|
13273
|
+
}>>>;
|
|
13274
|
+
shirt: z.ZodString;
|
|
13275
|
+
shirtAccent: z.ZodString;
|
|
13276
|
+
shirtPattern: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13277
|
+
plain: "plain";
|
|
13278
|
+
buttons: "buttons";
|
|
13279
|
+
stripes: "stripes";
|
|
13280
|
+
sash: "sash";
|
|
13281
|
+
yoke: "yoke";
|
|
13282
|
+
twotone: "twotone";
|
|
13283
|
+
}>>>;
|
|
13284
|
+
}, z.core.$strip>>>;
|
|
13285
|
+
}, z.core.$strict>>;
|
|
13286
|
+
scenes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13287
|
+
at: z.ZodString;
|
|
13288
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13289
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13290
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13291
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13292
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13293
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13294
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13295
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13296
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13297
|
+
}, z.core.$strict>>;
|
|
13298
|
+
kind: z.ZodLiteral<"user-prompt">;
|
|
13299
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13300
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13301
|
+
at: z.ZodString;
|
|
13302
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13303
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13304
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13305
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13306
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13307
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13308
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13309
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13310
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13311
|
+
}, z.core.$strict>>;
|
|
13312
|
+
kind: z.ZodLiteral<"reasoning">;
|
|
13313
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13314
|
+
name: z.ZodString;
|
|
13315
|
+
argsSummary: z.ZodOptional<z.ZodString>;
|
|
13316
|
+
success: z.ZodBoolean;
|
|
13317
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13318
|
+
path: z.ZodOptional<z.ZodString>;
|
|
13319
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
13320
|
+
diffStats: z.ZodOptional<z.ZodObject<{
|
|
13321
|
+
addedLines: z.ZodNumber;
|
|
13322
|
+
removedLines: z.ZodNumber;
|
|
13323
|
+
}, z.core.$strict>>;
|
|
13324
|
+
at: z.ZodString;
|
|
13325
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13326
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13327
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13328
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13329
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13330
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13331
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13332
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13333
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13334
|
+
}, z.core.$strict>>;
|
|
13335
|
+
kind: z.ZodLiteral<"tool-call">;
|
|
13336
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13337
|
+
at: z.ZodString;
|
|
13338
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13339
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13340
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13341
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13342
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13343
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13344
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13345
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13346
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13347
|
+
}, z.core.$strict>>;
|
|
13348
|
+
kind: z.ZodLiteral<"reply">;
|
|
13349
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13350
|
+
toActorId: z.ZodString;
|
|
13351
|
+
toSessionId: z.ZodOptional<z.ZodString>;
|
|
13352
|
+
delegationKind: z.ZodOptional<z.ZodEnum<{
|
|
13353
|
+
delegation: "delegation";
|
|
13354
|
+
consultation: "consultation";
|
|
13355
|
+
"task-entry": "task-entry";
|
|
13356
|
+
"task-handoff": "task-handoff";
|
|
13357
|
+
}>>;
|
|
13358
|
+
at: z.ZodString;
|
|
13359
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13360
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13361
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13362
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13363
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13364
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13365
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13366
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13367
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13368
|
+
}, z.core.$strict>>;
|
|
13369
|
+
kind: z.ZodLiteral<"delegation">;
|
|
13370
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13371
|
+
stepId: z.ZodString;
|
|
13372
|
+
stepName: z.ZodOptional<z.ZodString>;
|
|
13373
|
+
phase: z.ZodEnum<{
|
|
13374
|
+
activated: "activated";
|
|
13375
|
+
completed: "completed";
|
|
13376
|
+
gated: "gated";
|
|
13377
|
+
redriven: "redriven";
|
|
13378
|
+
stalled: "stalled";
|
|
13379
|
+
}>;
|
|
13380
|
+
at: z.ZodString;
|
|
13381
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13382
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13383
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13384
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13385
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13386
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13387
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13388
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13389
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13390
|
+
}, z.core.$strict>>;
|
|
13391
|
+
kind: z.ZodLiteral<"step-transition">;
|
|
13392
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13393
|
+
stepId: z.ZodOptional<z.ZodString>;
|
|
13394
|
+
verdict: z.ZodEnum<{
|
|
13395
|
+
pass: "pass";
|
|
13396
|
+
fail: "fail";
|
|
13397
|
+
}>;
|
|
13398
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
13399
|
+
at: z.ZodString;
|
|
13400
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13401
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13402
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13403
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13404
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13405
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13406
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13407
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13408
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13409
|
+
}, z.core.$strict>>;
|
|
13410
|
+
kind: z.ZodLiteral<"gate-verdict">;
|
|
13411
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13412
|
+
store: z.ZodEnum<{
|
|
13413
|
+
artifact: "artifact";
|
|
13414
|
+
workspace: "workspace";
|
|
13415
|
+
}>;
|
|
13416
|
+
path: z.ZodString;
|
|
13417
|
+
bytes: z.ZodOptional<z.ZodNumber>;
|
|
13418
|
+
count: z.ZodOptional<z.ZodNumber>;
|
|
13419
|
+
screenshotRef: z.ZodOptional<z.ZodString>;
|
|
13420
|
+
at: z.ZodString;
|
|
13421
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13422
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13423
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13424
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13425
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13426
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13427
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13428
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13429
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13430
|
+
}, z.core.$strict>>;
|
|
13431
|
+
kind: z.ZodLiteral<"artifact-produced">;
|
|
13432
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13433
|
+
state: z.ZodOptional<z.ZodEnum<{
|
|
13434
|
+
asked: "asked";
|
|
13435
|
+
answered: "answered";
|
|
13436
|
+
}>>;
|
|
13437
|
+
at: z.ZodString;
|
|
13438
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13439
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13440
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13441
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13442
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13443
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13444
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13445
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13446
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13447
|
+
}, z.core.$strict>>;
|
|
13448
|
+
kind: z.ZodLiteral<"question">;
|
|
13449
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13450
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
13451
|
+
at: z.ZodString;
|
|
13452
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13453
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13454
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13455
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13456
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13457
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13458
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13459
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13460
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13461
|
+
}, z.core.$strict>>;
|
|
13462
|
+
kind: z.ZodLiteral<"turn-aborted">;
|
|
13463
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13464
|
+
stepId: z.ZodOptional<z.ZodString>;
|
|
13465
|
+
at: z.ZodString;
|
|
13466
|
+
actorId: z.ZodOptional<z.ZodString>;
|
|
13467
|
+
sessionId: z.ZodOptional<z.ZodString>;
|
|
13468
|
+
taskRef: z.ZodOptional<z.ZodString>;
|
|
13469
|
+
excerpt: z.ZodOptional<z.ZodString>;
|
|
13470
|
+
refs: z.ZodOptional<z.ZodObject<{
|
|
13471
|
+
screenshot: z.ZodOptional<z.ZodString>;
|
|
13472
|
+
artifact: z.ZodOptional<z.ZodString>;
|
|
13473
|
+
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13474
|
+
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13475
|
+
}, z.core.$strict>>;
|
|
13476
|
+
kind: z.ZodLiteral<"note">;
|
|
13477
|
+
}, z.core.$strict>], "kind">>;
|
|
13478
|
+
screenshots: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13479
|
+
file: z.ZodString;
|
|
13480
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
13481
|
+
sceneId: z.ZodOptional<z.ZodString>;
|
|
13482
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
13483
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
13484
|
+
}, z.core.$strict>>>;
|
|
13485
|
+
budget: z.ZodObject<{
|
|
13486
|
+
droppedScenes: z.ZodNumber;
|
|
13487
|
+
truncatedExcerpts: z.ZodNumber;
|
|
13488
|
+
}, z.core.$strict>;
|
|
13489
|
+
extensions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13490
|
+
}, z.core.$strict>;
|
|
13491
|
+
type RunRecording = z.infer<typeof RunRecordingSchema>;
|
|
13492
|
+
/**
|
|
13493
|
+
* The gilde sidecar shape: a RunRecording whose `provenance` is present.
|
|
13494
|
+
* Same wire format — a run-dir transcript becomes publishable by
|
|
13495
|
+
* stamping provenance, nothing else changes.
|
|
13496
|
+
*/
|
|
13497
|
+
declare const CraftbookRecordingSchema: z.ZodObject<{
|
|
13498
|
+
schemaVersion: z.ZodNumber;
|
|
13499
|
+
trial: z.ZodOptional<z.ZodObject<{
|
|
13500
|
+
trialId: z.ZodString;
|
|
13501
|
+
scenarioId: z.ZodString;
|
|
13502
|
+
modelId: z.ZodString;
|
|
13503
|
+
startedAt: z.ZodString;
|
|
13504
|
+
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13505
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
13506
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
13507
|
+
}, z.core.$strict>>;
|
|
13508
|
+
actors: z.ZodArray<z.ZodObject<{
|
|
13509
|
+
id: z.ZodString;
|
|
13510
|
+
name: z.ZodString;
|
|
13511
|
+
role: z.ZodOptional<z.ZodString>;
|
|
13512
|
+
kind: z.ZodEnum<{
|
|
13513
|
+
gezel: "gezel";
|
|
13514
|
+
user: "user";
|
|
13515
|
+
system: "system";
|
|
13516
|
+
}>;
|
|
13517
|
+
meester: z.ZodOptional<z.ZodBoolean>;
|
|
13518
|
+
poppetje: z.ZodOptional<z.ZodPreprocess<z.ZodObject<{
|
|
13519
|
+
key: z.ZodString;
|
|
13520
|
+
name: z.ZodString;
|
|
13521
|
+
bodyShape: z.ZodEnum<{
|
|
13522
|
+
[x: string]: string;
|
|
13523
|
+
}>;
|
|
13524
|
+
figureScale: z.ZodEnum<{
|
|
13525
|
+
[x: string]: string;
|
|
13526
|
+
}>;
|
|
13527
|
+
skin: z.ZodString;
|
|
13528
|
+
skin2: z.ZodString;
|
|
13529
|
+
hair: z.ZodString;
|
|
13530
|
+
hairShape: z.ZodEnum<{
|
|
13531
|
+
medium: "medium";
|
|
13532
|
+
halo: "halo";
|
|
13533
|
+
short: "short";
|
|
13534
|
+
bob: "bob";
|
|
13535
|
+
long: "long";
|
|
13536
|
+
"extra-long": "extra-long";
|
|
13537
|
+
bun: "bun";
|
|
13538
|
+
braids: "braids";
|
|
13539
|
+
shaved: "shaved";
|
|
13540
|
+
bald: "bald";
|
|
13541
|
+
}>;
|
|
13542
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13543
|
+
straight: "straight";
|
|
13544
|
+
short: "short";
|
|
13545
|
+
"side-swept": "side-swept";
|
|
13546
|
+
curtain: "curtain";
|
|
13547
|
+
}>>>>;
|
|
13548
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
13549
|
+
none: "none";
|
|
13550
|
+
center: "center";
|
|
13551
|
+
left: "left";
|
|
13552
|
+
right: "right";
|
|
13253
13553
|
}>>>;
|
|
13254
|
-
}, z.core.$strip>>>;
|
|
13255
|
-
}, z.core.$strict>>;
|
|
13256
|
-
scenes: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13257
|
-
at: z.ZodString;
|
|
13258
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13259
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13260
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13261
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13262
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13263
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13264
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13265
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13266
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13267
|
-
}, z.core.$strict>>;
|
|
13268
|
-
kind: z.ZodLiteral<"user-prompt">;
|
|
13269
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13270
|
-
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13271
|
-
at: z.ZodString;
|
|
13272
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13273
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13274
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13275
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13276
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13277
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13278
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13279
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13280
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13281
|
-
}, z.core.$strict>>;
|
|
13282
|
-
kind: z.ZodLiteral<"reasoning">;
|
|
13283
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13284
|
-
name: z.ZodString;
|
|
13285
|
-
argsSummary: z.ZodOptional<z.ZodString>;
|
|
13286
|
-
success: z.ZodBoolean;
|
|
13287
|
-
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13288
|
-
path: z.ZodOptional<z.ZodString>;
|
|
13289
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
13290
|
-
diffStats: z.ZodOptional<z.ZodObject<{
|
|
13291
|
-
addedLines: z.ZodNumber;
|
|
13292
|
-
removedLines: z.ZodNumber;
|
|
13293
|
-
}, z.core.$strict>>;
|
|
13294
|
-
at: z.ZodString;
|
|
13295
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13296
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13297
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13298
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13299
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13300
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13301
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13302
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13303
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13304
|
-
}, z.core.$strict>>;
|
|
13305
|
-
kind: z.ZodLiteral<"tool-call">;
|
|
13306
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13307
|
-
at: z.ZodString;
|
|
13308
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13309
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13310
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13311
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13312
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13313
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13314
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13315
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13316
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13317
|
-
}, z.core.$strict>>;
|
|
13318
|
-
kind: z.ZodLiteral<"reply">;
|
|
13319
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13320
|
-
toActorId: z.ZodString;
|
|
13321
|
-
toSessionId: z.ZodOptional<z.ZodString>;
|
|
13322
|
-
delegationKind: z.ZodOptional<z.ZodEnum<{
|
|
13323
|
-
delegation: "delegation";
|
|
13324
|
-
consultation: "consultation";
|
|
13325
|
-
"task-entry": "task-entry";
|
|
13326
|
-
"task-handoff": "task-handoff";
|
|
13327
|
-
}>>;
|
|
13328
|
-
at: z.ZodString;
|
|
13329
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13330
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13331
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13332
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13333
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13334
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13335
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13336
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13337
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13338
|
-
}, z.core.$strict>>;
|
|
13339
|
-
kind: z.ZodLiteral<"delegation">;
|
|
13340
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13341
|
-
stepId: z.ZodString;
|
|
13342
|
-
stepName: z.ZodOptional<z.ZodString>;
|
|
13343
|
-
phase: z.ZodEnum<{
|
|
13344
|
-
activated: "activated";
|
|
13345
|
-
completed: "completed";
|
|
13346
|
-
gated: "gated";
|
|
13347
|
-
redriven: "redriven";
|
|
13348
|
-
stalled: "stalled";
|
|
13349
|
-
}>;
|
|
13350
|
-
at: z.ZodString;
|
|
13351
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13352
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13353
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13354
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13355
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13356
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13357
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13358
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13359
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13360
|
-
}, z.core.$strict>>;
|
|
13361
|
-
kind: z.ZodLiteral<"step-transition">;
|
|
13362
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13363
|
-
stepId: z.ZodOptional<z.ZodString>;
|
|
13364
|
-
verdict: z.ZodEnum<{
|
|
13365
|
-
pass: "pass";
|
|
13366
|
-
fail: "fail";
|
|
13367
|
-
}>;
|
|
13368
|
-
attempt: z.ZodOptional<z.ZodNumber>;
|
|
13369
|
-
at: z.ZodString;
|
|
13370
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13371
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13372
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13373
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13374
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13375
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13376
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13377
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13378
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13379
|
-
}, z.core.$strict>>;
|
|
13380
|
-
kind: z.ZodLiteral<"gate-verdict">;
|
|
13381
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13382
|
-
store: z.ZodEnum<{
|
|
13383
|
-
artifact: "artifact";
|
|
13384
|
-
workspace: "workspace";
|
|
13385
|
-
}>;
|
|
13386
|
-
path: z.ZodString;
|
|
13387
|
-
bytes: z.ZodOptional<z.ZodNumber>;
|
|
13388
|
-
count: z.ZodOptional<z.ZodNumber>;
|
|
13389
|
-
screenshotRef: z.ZodOptional<z.ZodString>;
|
|
13390
|
-
at: z.ZodString;
|
|
13391
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13392
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13393
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13394
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13395
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13396
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13397
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13398
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13399
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13400
|
-
}, z.core.$strict>>;
|
|
13401
|
-
kind: z.ZodLiteral<"artifact-produced">;
|
|
13402
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13403
|
-
state: z.ZodOptional<z.ZodEnum<{
|
|
13404
|
-
asked: "asked";
|
|
13405
|
-
answered: "answered";
|
|
13406
|
-
}>>;
|
|
13407
|
-
at: z.ZodString;
|
|
13408
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13409
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13410
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13411
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13412
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13413
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13414
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13415
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13416
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13417
|
-
}, z.core.$strict>>;
|
|
13418
|
-
kind: z.ZodLiteral<"question">;
|
|
13419
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13420
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
13421
|
-
at: z.ZodString;
|
|
13422
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13423
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13424
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13425
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13426
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13427
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13428
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13429
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13430
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13431
|
-
}, z.core.$strict>>;
|
|
13432
|
-
kind: z.ZodLiteral<"turn-aborted">;
|
|
13433
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
13434
|
-
stepId: z.ZodOptional<z.ZodString>;
|
|
13435
|
-
at: z.ZodString;
|
|
13436
|
-
actorId: z.ZodOptional<z.ZodString>;
|
|
13437
|
-
sessionId: z.ZodOptional<z.ZodString>;
|
|
13438
|
-
taskRef: z.ZodOptional<z.ZodString>;
|
|
13439
|
-
excerpt: z.ZodOptional<z.ZodString>;
|
|
13440
|
-
refs: z.ZodOptional<z.ZodObject<{
|
|
13441
|
-
screenshot: z.ZodOptional<z.ZodString>;
|
|
13442
|
-
artifact: z.ZodOptional<z.ZodString>;
|
|
13443
|
-
sessionFile: z.ZodOptional<z.ZodString>;
|
|
13444
|
-
messageIndex: z.ZodOptional<z.ZodNumber>;
|
|
13445
|
-
}, z.core.$strict>>;
|
|
13446
|
-
kind: z.ZodLiteral<"note">;
|
|
13447
|
-
}, z.core.$strict>], "kind">>;
|
|
13448
|
-
screenshots: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13449
|
-
file: z.ZodString;
|
|
13450
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
13451
|
-
sceneId: z.ZodOptional<z.ZodString>;
|
|
13452
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
13453
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
13454
|
-
}, z.core.$strict>>>;
|
|
13455
|
-
budget: z.ZodObject<{
|
|
13456
|
-
droppedScenes: z.ZodNumber;
|
|
13457
|
-
truncatedExcerpts: z.ZodNumber;
|
|
13458
|
-
}, z.core.$strict>;
|
|
13459
|
-
extensions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13460
|
-
}, z.core.$strict>;
|
|
13461
|
-
type RunRecording = z.infer<typeof RunRecordingSchema>;
|
|
13462
|
-
/**
|
|
13463
|
-
* The gilde sidecar shape: a RunRecording whose `provenance` is present.
|
|
13464
|
-
* Same wire format — a run-dir transcript becomes publishable by
|
|
13465
|
-
* stamping provenance, nothing else changes.
|
|
13466
|
-
*/
|
|
13467
|
-
declare const CraftbookRecordingSchema: z.ZodObject<{
|
|
13468
|
-
schemaVersion: z.ZodNumber;
|
|
13469
|
-
trial: z.ZodOptional<z.ZodObject<{
|
|
13470
|
-
trialId: z.ZodString;
|
|
13471
|
-
scenarioId: z.ZodString;
|
|
13472
|
-
modelId: z.ZodString;
|
|
13473
|
-
startedAt: z.ZodString;
|
|
13474
|
-
durationMs: z.ZodOptional<z.ZodNumber>;
|
|
13475
|
-
success: z.ZodOptional<z.ZodBoolean>;
|
|
13476
|
-
reason: z.ZodOptional<z.ZodString>;
|
|
13477
|
-
}, z.core.$strict>>;
|
|
13478
|
-
actors: z.ZodArray<z.ZodObject<{
|
|
13479
|
-
id: z.ZodString;
|
|
13480
|
-
name: z.ZodString;
|
|
13481
|
-
role: z.ZodOptional<z.ZodString>;
|
|
13482
|
-
kind: z.ZodEnum<{
|
|
13483
|
-
gezel: "gezel";
|
|
13484
|
-
user: "user";
|
|
13485
|
-
system: "system";
|
|
13486
|
-
}>;
|
|
13487
|
-
meester: z.ZodOptional<z.ZodBoolean>;
|
|
13488
|
-
poppetje: z.ZodOptional<z.ZodPreprocess<z.ZodObject<{
|
|
13489
|
-
key: z.ZodString;
|
|
13490
|
-
name: z.ZodString;
|
|
13491
|
-
bodyShape: z.ZodEnum<{
|
|
13492
|
-
[x: string]: string;
|
|
13493
|
-
}>;
|
|
13494
|
-
figureScale: z.ZodEnum<{
|
|
13495
|
-
[x: string]: string;
|
|
13496
|
-
}>;
|
|
13497
|
-
skin: z.ZodString;
|
|
13498
|
-
skin2: z.ZodString;
|
|
13499
|
-
hair: z.ZodString;
|
|
13500
|
-
hairShape: z.ZodEnum<{
|
|
13501
|
-
halo: "halo";
|
|
13502
|
-
short: "short";
|
|
13503
|
-
long: "long";
|
|
13504
|
-
bun: "bun";
|
|
13505
|
-
braids: "braids";
|
|
13506
|
-
shaved: "shaved";
|
|
13507
|
-
bald: "bald";
|
|
13508
|
-
}>;
|
|
13509
13554
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
13510
13555
|
cap: "cap";
|
|
13511
13556
|
beanie: "beanie";
|
|
@@ -39749,6 +39794,19 @@ declare const ListChatSessionsResponseSchema: z.ZodObject<{
|
|
|
39749
39794
|
}, z.core.$strip>;
|
|
39750
39795
|
type ListChatSessionsResponse = z.infer<typeof ListChatSessionsResponseSchema>;
|
|
39751
39796
|
declare const SendToSessionRequestSchema: z.ZodObject<{
|
|
39797
|
+
fileTurnIntent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
39798
|
+
kind: z.ZodLiteral<"create-file">;
|
|
39799
|
+
path: z.ZodString;
|
|
39800
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39801
|
+
kind: z.ZodLiteral<"repair-file">;
|
|
39802
|
+
path: z.ZodString;
|
|
39803
|
+
strategy: z.ZodOptional<z.ZodEnum<{
|
|
39804
|
+
rewrite: "rewrite";
|
|
39805
|
+
patch: "patch";
|
|
39806
|
+
}>>;
|
|
39807
|
+
readPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
39808
|
+
mutationPath: z.ZodOptional<z.ZodString>;
|
|
39809
|
+
}, z.core.$strip>], "kind">>;
|
|
39752
39810
|
message: z.ZodString;
|
|
39753
39811
|
mentions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
39754
39812
|
passiveCcGezelIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -42134,6 +42192,8 @@ declare const KnowledgeAvailableCatalogSchema: z.ZodObject<{
|
|
|
42134
42192
|
topics: z.ZodArray<z.ZodObject<{
|
|
42135
42193
|
id: z.ZodString;
|
|
42136
42194
|
name: z.ZodString;
|
|
42195
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
42196
|
+
sortKey: z.ZodOptional<z.ZodString>;
|
|
42137
42197
|
}, z.core.$strip>>;
|
|
42138
42198
|
minGezelVersion: z.ZodOptional<z.ZodString>;
|
|
42139
42199
|
installed: z.ZodOptional<z.ZodObject<{
|
|
@@ -42302,6 +42362,75 @@ declare const UpdateKnowledgeCatalogRequestSchema: z.ZodObject<{
|
|
|
42302
42362
|
autoUpdate: z.ZodOptional<z.ZodBoolean>;
|
|
42303
42363
|
}, z.core.$strip>;
|
|
42304
42364
|
type UpdateKnowledgeCatalogRequest = z.infer<typeof UpdateKnowledgeCatalogRequestSchema>;
|
|
42365
|
+
/** One topic of a mounted catalog's shipped table of contents. */
|
|
42366
|
+
declare const KnowledgeTopicNodeSchema: z.ZodObject<{
|
|
42367
|
+
id: z.ZodString;
|
|
42368
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
42369
|
+
name: z.ZodString;
|
|
42370
|
+
description: z.ZodNullable<z.ZodString>;
|
|
42371
|
+
sortKey: z.ZodString;
|
|
42372
|
+
documentCount: z.ZodNumber;
|
|
42373
|
+
totalDocumentCount: z.ZodNumber;
|
|
42374
|
+
}, z.core.$strip>;
|
|
42375
|
+
type KnowledgeTopicNode = z.infer<typeof KnowledgeTopicNodeSchema>;
|
|
42376
|
+
/** A document as listed or read from a mounted catalog (body excluded). */
|
|
42377
|
+
declare const KnowledgeDocumentSummarySchema: z.ZodObject<{
|
|
42378
|
+
id: z.ZodString;
|
|
42379
|
+
title: z.ZodString;
|
|
42380
|
+
slug: z.ZodString;
|
|
42381
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
42382
|
+
language: z.ZodString;
|
|
42383
|
+
topicId: z.ZodString;
|
|
42384
|
+
ordinal: z.ZodNullable<z.ZodNumber>;
|
|
42385
|
+
sourceUrl: z.ZodNullable<z.ZodString>;
|
|
42386
|
+
sourceRevision: z.ZodNullable<z.ZodString>;
|
|
42387
|
+
sourceUpdatedAt: z.ZodNullable<z.ZodString>;
|
|
42388
|
+
attribution: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
42389
|
+
meta: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
42390
|
+
}, z.core.$strip>;
|
|
42391
|
+
type KnowledgeDocumentSummary = z.infer<typeof KnowledgeDocumentSummarySchema>;
|
|
42392
|
+
declare const KnowledgeDocumentPageSchema: z.ZodObject<{
|
|
42393
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
42394
|
+
id: z.ZodString;
|
|
42395
|
+
title: z.ZodString;
|
|
42396
|
+
slug: z.ZodString;
|
|
42397
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
42398
|
+
language: z.ZodString;
|
|
42399
|
+
topicId: z.ZodString;
|
|
42400
|
+
ordinal: z.ZodNullable<z.ZodNumber>;
|
|
42401
|
+
sourceUrl: z.ZodNullable<z.ZodString>;
|
|
42402
|
+
sourceRevision: z.ZodNullable<z.ZodString>;
|
|
42403
|
+
sourceUpdatedAt: z.ZodNullable<z.ZodString>;
|
|
42404
|
+
attribution: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
42405
|
+
meta: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
42406
|
+
}, z.core.$strip>>;
|
|
42407
|
+
total: z.ZodNumber;
|
|
42408
|
+
}, z.core.$strip>;
|
|
42409
|
+
type KnowledgeDocumentPage = z.infer<typeof KnowledgeDocumentPageSchema>;
|
|
42410
|
+
declare const KnowledgeDocumentReadSchema: z.ZodObject<{
|
|
42411
|
+
id: z.ZodString;
|
|
42412
|
+
title: z.ZodString;
|
|
42413
|
+
slug: z.ZodString;
|
|
42414
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
42415
|
+
language: z.ZodString;
|
|
42416
|
+
topicId: z.ZodString;
|
|
42417
|
+
ordinal: z.ZodNullable<z.ZodNumber>;
|
|
42418
|
+
sourceUrl: z.ZodNullable<z.ZodString>;
|
|
42419
|
+
sourceRevision: z.ZodNullable<z.ZodString>;
|
|
42420
|
+
sourceUpdatedAt: z.ZodNullable<z.ZodString>;
|
|
42421
|
+
attribution: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
42422
|
+
meta: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
42423
|
+
markdown: z.ZodString;
|
|
42424
|
+
}, z.core.$strip>;
|
|
42425
|
+
type KnowledgeDocumentRead = z.infer<typeof KnowledgeDocumentReadSchema>;
|
|
42426
|
+
/** One declared image asset of a mounted catalog. */
|
|
42427
|
+
declare const KnowledgeAssetInfoSchema: z.ZodObject<{
|
|
42428
|
+
path: z.ZodString;
|
|
42429
|
+
contentType: z.ZodString;
|
|
42430
|
+
sizeBytes: z.ZodNumber;
|
|
42431
|
+
sha256: z.ZodString;
|
|
42432
|
+
}, z.core.$strip>;
|
|
42433
|
+
type KnowledgeAssetInfo = z.infer<typeof KnowledgeAssetInfoSchema>;
|
|
42305
42434
|
declare const KnowledgeSearchRequestSchema: z.ZodObject<{
|
|
42306
42435
|
query: z.ZodString;
|
|
42307
42436
|
maxResults: z.ZodOptional<z.ZodNumber>;
|
|
@@ -42311,6 +42440,57 @@ type KnowledgeSearchRequest = z.infer<typeof KnowledgeSearchRequestSchema>;
|
|
|
42311
42440
|
declare const KNOWLEDGE_HISTORY_KINDS: readonly ["knowledge.catalog.installed", "knowledge.catalog.updated", "knowledge.catalog.enabled", "knowledge.catalog.disabled", "knowledge.catalog.removed", "knowledge.catalog.install_failed"];
|
|
42312
42441
|
type KnowledgeHistoryKind = (typeof KNOWLEDGE_HISTORY_KINDS)[number];
|
|
42313
42442
|
|
|
42443
|
+
declare const LlamaCppLoadModeSchema: z.ZodEnum<{
|
|
42444
|
+
auto: "auto";
|
|
42445
|
+
none: "none";
|
|
42446
|
+
mmap: "mmap";
|
|
42447
|
+
mlock: "mlock";
|
|
42448
|
+
"mmap+mlock": "mmap+mlock";
|
|
42449
|
+
dio: "dio";
|
|
42450
|
+
}>;
|
|
42451
|
+
declare const LlamaCppLazyModeSchema: z.ZodEnum<{
|
|
42452
|
+
auto: "auto";
|
|
42453
|
+
off: "off";
|
|
42454
|
+
on: "on";
|
|
42455
|
+
}>;
|
|
42456
|
+
/** llama.cpp v0.4 settings shared by the persisted config and its API schema. */
|
|
42457
|
+
declare const LlamaCppV4ConfigSchema: z.ZodObject<{
|
|
42458
|
+
llamaCppLoadMode: z.ZodOptional<z.ZodEnum<{
|
|
42459
|
+
auto: "auto";
|
|
42460
|
+
none: "none";
|
|
42461
|
+
mmap: "mmap";
|
|
42462
|
+
mlock: "mlock";
|
|
42463
|
+
"mmap+mlock": "mmap+mlock";
|
|
42464
|
+
dio: "dio";
|
|
42465
|
+
}>>;
|
|
42466
|
+
llamaCppLazyMode: z.ZodOptional<z.ZodEnum<{
|
|
42467
|
+
auto: "auto";
|
|
42468
|
+
off: "off";
|
|
42469
|
+
on: "on";
|
|
42470
|
+
}>>;
|
|
42471
|
+
llamaCppReasoningPreserve: z.ZodOptional<z.ZodBoolean>;
|
|
42472
|
+
llamaCppNCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
42473
|
+
}, z.core.$strip>;
|
|
42474
|
+
/** Nullable variants used by Settings to restore each value to Auto/default. */
|
|
42475
|
+
declare const LlamaCppV4ConfigResetSchema: z.ZodObject<{
|
|
42476
|
+
llamaCppMlock: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
42477
|
+
llamaCppLoadMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
42478
|
+
auto: "auto";
|
|
42479
|
+
none: "none";
|
|
42480
|
+
mmap: "mmap";
|
|
42481
|
+
mlock: "mlock";
|
|
42482
|
+
"mmap+mlock": "mmap+mlock";
|
|
42483
|
+
dio: "dio";
|
|
42484
|
+
}>>>;
|
|
42485
|
+
llamaCppLazyMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
42486
|
+
auto: "auto";
|
|
42487
|
+
off: "off";
|
|
42488
|
+
on: "on";
|
|
42489
|
+
}>>>;
|
|
42490
|
+
llamaCppReasoningPreserve: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
42491
|
+
llamaCppNCpuFfn: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
42492
|
+
}, z.core.$strip>;
|
|
42493
|
+
|
|
42314
42494
|
/**
|
|
42315
42495
|
* The Keurmeester — a frontier-model quality inspector consulted when a
|
|
42316
42496
|
* small/local model's existing recovery machinery (continuation nudges,
|
|
@@ -45281,411 +45461,6 @@ type RemoteServingConfig = z.infer<typeof RemoteServingConfigSchema>;
|
|
|
45281
45461
|
/** Balanced local-model retention: warm enough for follow-ups, short enough to return VRAM. */
|
|
45282
45462
|
declare const DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS: number;
|
|
45283
45463
|
declare const GezelConfigSchema: z.ZodObject<{
|
|
45284
|
-
provider: z.ZodOptional<z.ZodEnum<{
|
|
45285
|
-
"llama-cpp": "llama-cpp";
|
|
45286
|
-
mlx: "mlx";
|
|
45287
|
-
copilot: "copilot";
|
|
45288
|
-
openai: "openai";
|
|
45289
|
-
anthropic: "anthropic";
|
|
45290
|
-
"anthropic-cli": "anthropic-cli";
|
|
45291
|
-
"codex-cli": "codex-cli";
|
|
45292
|
-
ollama: "ollama";
|
|
45293
|
-
ds4: "ds4";
|
|
45294
|
-
remote: "remote";
|
|
45295
|
-
}>>;
|
|
45296
|
-
hosting: z.ZodOptional<z.ZodEnum<{
|
|
45297
|
-
auto: "auto";
|
|
45298
|
-
"machine-service": "machine-service";
|
|
45299
|
-
"per-user": "per-user";
|
|
45300
|
-
}>>;
|
|
45301
|
-
service: z.ZodOptional<z.ZodObject<{
|
|
45302
|
-
url: z.ZodString;
|
|
45303
|
-
token: z.ZodString;
|
|
45304
|
-
}, z.core.$strip>>;
|
|
45305
|
-
localEngineIdleTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
45306
|
-
deviceSafety: z.ZodOptional<z.ZodObject<{
|
|
45307
|
-
mode: z.ZodOptional<z.ZodEnum<{
|
|
45308
|
-
off: "off";
|
|
45309
|
-
observe: "observe";
|
|
45310
|
-
guard: "guard";
|
|
45311
|
-
}>>;
|
|
45312
|
-
maxStartTemperatureC: z.ZodOptional<z.ZodNumber>;
|
|
45313
|
-
resumeTemperatureC: z.ZodOptional<z.ZodNumber>;
|
|
45314
|
-
minThermalMarginC: z.ZodOptional<z.ZodNumber>;
|
|
45315
|
-
pollIntervalMs: z.ZodOptional<z.ZodNumber>;
|
|
45316
|
-
maxWaitMs: z.ZodOptional<z.ZodNumber>;
|
|
45317
|
-
consecutiveHealthySamples: z.ZodOptional<z.ZodNumber>;
|
|
45318
|
-
onTelemetryFailure: z.ZodOptional<z.ZodEnum<{
|
|
45319
|
-
allow: "allow";
|
|
45320
|
-
block: "block";
|
|
45321
|
-
}>>;
|
|
45322
|
-
}, z.core.$strip>>;
|
|
45323
|
-
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
45324
|
-
showPoppetjes: z.ZodOptional<z.ZodBoolean>;
|
|
45325
|
-
narrateAssistantReplies: z.ZodOptional<z.ZodBoolean>;
|
|
45326
|
-
defaultSttModel: z.ZodOptional<z.ZodString>;
|
|
45327
|
-
microphoneDeviceId: z.ZodOptional<z.ZodString>;
|
|
45328
|
-
microphoneDeviceLabel: z.ZodOptional<z.ZodString>;
|
|
45329
|
-
githubToken: z.ZodOptional<z.ZodString>;
|
|
45330
|
-
githubAuth: z.ZodOptional<z.ZodObject<{
|
|
45331
|
-
kind: z.ZodEnum<{
|
|
45332
|
-
oauth: "oauth";
|
|
45333
|
-
pat: "pat";
|
|
45334
|
-
}>;
|
|
45335
|
-
login: z.ZodOptional<z.ZodString>;
|
|
45336
|
-
name: z.ZodOptional<z.ZodString>;
|
|
45337
|
-
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
45338
|
-
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45339
|
-
acquiredAt: z.ZodOptional<z.ZodString>;
|
|
45340
|
-
}, z.core.$strip>>;
|
|
45341
|
-
oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45342
|
-
clientId: z.ZodString;
|
|
45343
|
-
}, z.core.$strip>>>;
|
|
45344
|
-
openaiApiKey: z.ZodOptional<z.ZodString>;
|
|
45345
|
-
openaiOrganization: z.ZodOptional<z.ZodString>;
|
|
45346
|
-
anthropicApiKey: z.ZodOptional<z.ZodString>;
|
|
45347
|
-
googleAiApiKey: z.ZodOptional<z.ZodString>;
|
|
45348
|
-
imageProvider: z.ZodOptional<z.ZodEnum<{
|
|
45349
|
-
mock: "mock";
|
|
45350
|
-
openai: "openai";
|
|
45351
|
-
"sd-cpp": "sd-cpp";
|
|
45352
|
-
"google-ai": "google-ai";
|
|
45353
|
-
}>>;
|
|
45354
|
-
defaultImageModel: z.ZodOptional<z.ZodObject<{
|
|
45355
|
-
'sd-cpp': z.ZodOptional<z.ZodString>;
|
|
45356
|
-
'google-ai': z.ZodOptional<z.ZodString>;
|
|
45357
|
-
openai: z.ZodOptional<z.ZodString>;
|
|
45358
|
-
}, z.core.$strip>>;
|
|
45359
|
-
imageGenerationConfirmation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"always-allow">, z.ZodLiteral<"ask">, z.ZodObject<{
|
|
45360
|
-
mode: z.ZodLiteral<"snooze">;
|
|
45361
|
-
until: z.ZodString;
|
|
45362
|
-
}, z.core.$strip>]>>;
|
|
45363
|
-
gpuMemoryPolicy: z.ZodOptional<z.ZodEnum<{
|
|
45364
|
-
auto: "auto";
|
|
45365
|
-
coexist: "coexist";
|
|
45366
|
-
swap: "swap";
|
|
45367
|
-
}>>;
|
|
45368
|
-
videoProvider: z.ZodOptional<z.ZodEnum<{
|
|
45369
|
-
mock: "mock";
|
|
45370
|
-
diffusers: "diffusers";
|
|
45371
|
-
}>>;
|
|
45372
|
-
defaultVideoModel: z.ZodOptional<z.ZodString>;
|
|
45373
|
-
videoGenerationConfirmation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"always-allow">, z.ZodLiteral<"ask">, z.ZodObject<{
|
|
45374
|
-
mode: z.ZodLiteral<"snooze">;
|
|
45375
|
-
until: z.ZodString;
|
|
45376
|
-
}, z.core.$strip>]>>;
|
|
45377
|
-
recognitionProvider: z.ZodOptional<z.ZodEnum<{
|
|
45378
|
-
"llama-cpp": "llama-cpp";
|
|
45379
|
-
mlx: "mlx";
|
|
45380
|
-
mock: "mock";
|
|
45381
|
-
}>>;
|
|
45382
|
-
defaultRecognitionModel: z.ZodOptional<z.ZodString>;
|
|
45383
|
-
recognition: z.ZodOptional<z.ZodObject<{
|
|
45384
|
-
mode: z.ZodOptional<z.ZodEnum<{
|
|
45385
|
-
always: "always";
|
|
45386
|
-
auto: "auto";
|
|
45387
|
-
off: "off";
|
|
45388
|
-
}>>;
|
|
45389
|
-
modes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
45390
|
-
describe: "describe";
|
|
45391
|
-
ocr: "ocr";
|
|
45392
|
-
ui: "ui";
|
|
45393
|
-
extract: "extract";
|
|
45394
|
-
}>>>;
|
|
45395
|
-
maxImagesPerTurn: z.ZodOptional<z.ZodNumber>;
|
|
45396
|
-
timeoutMsPerImage: z.ZodOptional<z.ZodNumber>;
|
|
45397
|
-
maxDigestChars: z.ZodOptional<z.ZodNumber>;
|
|
45398
|
-
maxMegapixels: z.ZodOptional<z.ZodNumber>;
|
|
45399
|
-
}, z.core.$strip>>;
|
|
45400
|
-
nativeVision: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
45401
|
-
webhookBearerToken: z.ZodOptional<z.ZodString>;
|
|
45402
|
-
webhookBasicAuth: z.ZodOptional<z.ZodString>;
|
|
45403
|
-
braveSearchApiKey: z.ZodOptional<z.ZodString>;
|
|
45404
|
-
tavilyApiKey: z.ZodOptional<z.ZodString>;
|
|
45405
|
-
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
45406
|
-
autoStartOllama: z.ZodOptional<z.ZodBoolean>;
|
|
45407
|
-
defaultModel: z.ZodOptional<z.ZodObject<{
|
|
45408
|
-
copilot: z.ZodOptional<z.ZodString>;
|
|
45409
|
-
openai: z.ZodOptional<z.ZodString>;
|
|
45410
|
-
anthropic: z.ZodOptional<z.ZodString>;
|
|
45411
|
-
'anthropic-cli': z.ZodOptional<z.ZodString>;
|
|
45412
|
-
'codex-cli': z.ZodOptional<z.ZodString>;
|
|
45413
|
-
ollama: z.ZodOptional<z.ZodString>;
|
|
45414
|
-
'llama-cpp': z.ZodOptional<z.ZodString>;
|
|
45415
|
-
mlx: z.ZodOptional<z.ZodString>;
|
|
45416
|
-
ds4: z.ZodOptional<z.ZodString>;
|
|
45417
|
-
remote: z.ZodOptional<z.ZodString>;
|
|
45418
|
-
}, z.core.$strip>>;
|
|
45419
|
-
defaultReasoningEffort: z.ZodOptional<z.ZodObject<{
|
|
45420
|
-
copilot: z.ZodOptional<z.ZodString>;
|
|
45421
|
-
openai: z.ZodOptional<z.ZodString>;
|
|
45422
|
-
anthropic: z.ZodOptional<z.ZodString>;
|
|
45423
|
-
'anthropic-cli': z.ZodOptional<z.ZodString>;
|
|
45424
|
-
'codex-cli': z.ZodOptional<z.ZodString>;
|
|
45425
|
-
ollama: z.ZodOptional<z.ZodString>;
|
|
45426
|
-
'llama-cpp': z.ZodOptional<z.ZodString>;
|
|
45427
|
-
mlx: z.ZodOptional<z.ZodString>;
|
|
45428
|
-
ds4: z.ZodOptional<z.ZodString>;
|
|
45429
|
-
remote: z.ZodOptional<z.ZodString>;
|
|
45430
|
-
}, z.core.$strip>>;
|
|
45431
|
-
modelTuning: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45432
|
-
sampling: z.ZodOptional<z.ZodObject<{
|
|
45433
|
-
temperature: z.ZodOptional<z.ZodNumber>;
|
|
45434
|
-
topP: z.ZodOptional<z.ZodNumber>;
|
|
45435
|
-
topK: z.ZodOptional<z.ZodNumber>;
|
|
45436
|
-
minP: z.ZodOptional<z.ZodNumber>;
|
|
45437
|
-
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
45438
|
-
seed: z.ZodOptional<z.ZodNumber>;
|
|
45439
|
-
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45440
|
-
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
45441
|
-
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45442
|
-
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
45443
|
-
dry: z.ZodOptional<z.ZodObject<{
|
|
45444
|
-
multiplier: z.ZodNumber;
|
|
45445
|
-
base: z.ZodOptional<z.ZodNumber>;
|
|
45446
|
-
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
45447
|
-
}, z.core.$strip>>;
|
|
45448
|
-
xtc: z.ZodOptional<z.ZodObject<{
|
|
45449
|
-
probability: z.ZodNumber;
|
|
45450
|
-
threshold: z.ZodNumber;
|
|
45451
|
-
}, z.core.$strip>>;
|
|
45452
|
-
}, z.core.$strip>>;
|
|
45453
|
-
samplingWhenThinking: z.ZodOptional<z.ZodObject<{
|
|
45454
|
-
temperature: z.ZodOptional<z.ZodNumber>;
|
|
45455
|
-
topP: z.ZodOptional<z.ZodNumber>;
|
|
45456
|
-
topK: z.ZodOptional<z.ZodNumber>;
|
|
45457
|
-
minP: z.ZodOptional<z.ZodNumber>;
|
|
45458
|
-
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
45459
|
-
seed: z.ZodOptional<z.ZodNumber>;
|
|
45460
|
-
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45461
|
-
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
45462
|
-
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45463
|
-
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
45464
|
-
dry: z.ZodOptional<z.ZodObject<{
|
|
45465
|
-
multiplier: z.ZodNumber;
|
|
45466
|
-
base: z.ZodOptional<z.ZodNumber>;
|
|
45467
|
-
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
45468
|
-
}, z.core.$strip>>;
|
|
45469
|
-
xtc: z.ZodOptional<z.ZodObject<{
|
|
45470
|
-
probability: z.ZodNumber;
|
|
45471
|
-
threshold: z.ZodNumber;
|
|
45472
|
-
}, z.core.$strip>>;
|
|
45473
|
-
}, z.core.$strip>>;
|
|
45474
|
-
reasoning: z.ZodOptional<z.ZodObject<{
|
|
45475
|
-
effort: z.ZodOptional<z.ZodEnum<{
|
|
45476
|
-
medium: "medium";
|
|
45477
|
-
low: "low";
|
|
45478
|
-
high: "high";
|
|
45479
|
-
}>>;
|
|
45480
|
-
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
45481
|
-
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
45482
|
-
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
45483
|
-
}, z.core.$strip>>;
|
|
45484
|
-
output: z.ZodOptional<z.ZodObject<{
|
|
45485
|
-
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
45486
|
-
text: "text";
|
|
45487
|
-
json_object: "json_object";
|
|
45488
|
-
}>>;
|
|
45489
|
-
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
45490
|
-
grammar: z.ZodOptional<z.ZodString>;
|
|
45491
|
-
}, z.core.$strip>>;
|
|
45492
|
-
toolChoice: z.ZodOptional<z.ZodEnum<{
|
|
45493
|
-
required: "required";
|
|
45494
|
-
auto: "auto";
|
|
45495
|
-
none: "none";
|
|
45496
|
-
}>>;
|
|
45497
|
-
promptTags: z.ZodOptional<z.ZodObject<{
|
|
45498
|
-
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
45499
|
-
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
45500
|
-
}, z.core.$strip>>;
|
|
45501
|
-
engine: z.ZodOptional<z.ZodObject<{
|
|
45502
|
-
llamaCpp: z.ZodOptional<z.ZodObject<{
|
|
45503
|
-
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
45504
|
-
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
45505
|
-
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
45506
|
-
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
45507
|
-
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
45508
|
-
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
45509
|
-
auto: "auto";
|
|
45510
|
-
off: "off";
|
|
45511
|
-
on: "on";
|
|
45512
|
-
}>>;
|
|
45513
|
-
ubatchSize: z.ZodOptional<z.ZodNumber>;
|
|
45514
|
-
contextSize: z.ZodOptional<z.ZodNumber>;
|
|
45515
|
-
chatTemplate: z.ZodOptional<z.ZodString>;
|
|
45516
|
-
threads: z.ZodOptional<z.ZodNumber>;
|
|
45517
|
-
batchSize: z.ZodOptional<z.ZodNumber>;
|
|
45518
|
-
spec: z.ZodOptional<z.ZodObject<{
|
|
45519
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
45520
|
-
none: "none";
|
|
45521
|
-
"draft-mtp": "draft-mtp";
|
|
45522
|
-
"draft-eagle3": "draft-eagle3";
|
|
45523
|
-
"draft-dflash": "draft-dflash";
|
|
45524
|
-
"draft-simple": "draft-simple";
|
|
45525
|
-
"ngram-mod": "ngram-mod";
|
|
45526
|
-
"ngram-simple": "ngram-simple";
|
|
45527
|
-
"ngram-map-k": "ngram-map-k";
|
|
45528
|
-
"ngram-map-k4v": "ngram-map-k4v";
|
|
45529
|
-
"ngram-cache": "ngram-cache";
|
|
45530
|
-
}>>;
|
|
45531
|
-
mtp: z.ZodOptional<z.ZodBoolean>;
|
|
45532
|
-
draftModelId: z.ZodOptional<z.ZodString>;
|
|
45533
|
-
nMax: z.ZodOptional<z.ZodNumber>;
|
|
45534
|
-
}, z.core.$strip>>;
|
|
45535
|
-
}, z.core.$strip>>;
|
|
45536
|
-
}, z.core.$strip>>;
|
|
45537
|
-
profiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45538
|
-
sampling: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
45539
|
-
temperature: z.ZodOptional<z.ZodNumber>;
|
|
45540
|
-
topP: z.ZodOptional<z.ZodNumber>;
|
|
45541
|
-
topK: z.ZodOptional<z.ZodNumber>;
|
|
45542
|
-
minP: z.ZodOptional<z.ZodNumber>;
|
|
45543
|
-
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
45544
|
-
seed: z.ZodOptional<z.ZodNumber>;
|
|
45545
|
-
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45546
|
-
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
45547
|
-
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45548
|
-
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
45549
|
-
dry: z.ZodOptional<z.ZodObject<{
|
|
45550
|
-
multiplier: z.ZodNumber;
|
|
45551
|
-
base: z.ZodOptional<z.ZodNumber>;
|
|
45552
|
-
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
45553
|
-
}, z.core.$strip>>;
|
|
45554
|
-
xtc: z.ZodOptional<z.ZodObject<{
|
|
45555
|
-
probability: z.ZodNumber;
|
|
45556
|
-
threshold: z.ZodNumber;
|
|
45557
|
-
}, z.core.$strip>>;
|
|
45558
|
-
}, z.core.$strip>>>;
|
|
45559
|
-
samplingWhenThinking: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
45560
|
-
temperature: z.ZodOptional<z.ZodNumber>;
|
|
45561
|
-
topP: z.ZodOptional<z.ZodNumber>;
|
|
45562
|
-
topK: z.ZodOptional<z.ZodNumber>;
|
|
45563
|
-
minP: z.ZodOptional<z.ZodNumber>;
|
|
45564
|
-
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
45565
|
-
seed: z.ZodOptional<z.ZodNumber>;
|
|
45566
|
-
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45567
|
-
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
45568
|
-
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
45569
|
-
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
45570
|
-
dry: z.ZodOptional<z.ZodObject<{
|
|
45571
|
-
multiplier: z.ZodNumber;
|
|
45572
|
-
base: z.ZodOptional<z.ZodNumber>;
|
|
45573
|
-
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
45574
|
-
}, z.core.$strip>>;
|
|
45575
|
-
xtc: z.ZodOptional<z.ZodObject<{
|
|
45576
|
-
probability: z.ZodNumber;
|
|
45577
|
-
threshold: z.ZodNumber;
|
|
45578
|
-
}, z.core.$strip>>;
|
|
45579
|
-
}, z.core.$strip>>>;
|
|
45580
|
-
reasoning: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
45581
|
-
effort: z.ZodOptional<z.ZodEnum<{
|
|
45582
|
-
medium: "medium";
|
|
45583
|
-
low: "low";
|
|
45584
|
-
high: "high";
|
|
45585
|
-
}>>;
|
|
45586
|
-
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
45587
|
-
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
45588
|
-
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
45589
|
-
}, z.core.$strip>>>;
|
|
45590
|
-
output: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
45591
|
-
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
45592
|
-
text: "text";
|
|
45593
|
-
json_object: "json_object";
|
|
45594
|
-
}>>;
|
|
45595
|
-
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
45596
|
-
grammar: z.ZodOptional<z.ZodString>;
|
|
45597
|
-
}, z.core.$strip>>>;
|
|
45598
|
-
toolChoice: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
45599
|
-
required: "required";
|
|
45600
|
-
auto: "auto";
|
|
45601
|
-
none: "none";
|
|
45602
|
-
}>>>;
|
|
45603
|
-
promptTags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
45604
|
-
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
45605
|
-
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
45606
|
-
}, z.core.$strip>>>;
|
|
45607
|
-
}, z.core.$strip>>>;
|
|
45608
|
-
}, z.core.$strip>>>;
|
|
45609
|
-
modelFitness: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
45610
|
-
remoteServing: z.ZodOptional<z.ZodObject<{
|
|
45611
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
45612
|
-
bindAddress: z.ZodOptional<z.ZodString>;
|
|
45613
|
-
port: z.ZodOptional<z.ZodNumber>;
|
|
45614
|
-
priority: z.ZodOptional<z.ZodEnum<{
|
|
45615
|
-
equal: "equal";
|
|
45616
|
-
"below-local": "below-local";
|
|
45617
|
-
"above-local": "above-local";
|
|
45618
|
-
}>>;
|
|
45619
|
-
reserveLocalGb: z.ZodOptional<z.ZodNumber>;
|
|
45620
|
-
allowModels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45621
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
45622
|
-
maxConcurrentPerDevice: z.ZodOptional<z.ZodNumber>;
|
|
45623
|
-
maxChatPerDevice: z.ZodOptional<z.ZodNumber>;
|
|
45624
|
-
requestsPerMinute: z.ZodOptional<z.ZodNumber>;
|
|
45625
|
-
}, z.core.$strip>>;
|
|
45626
|
-
}, z.core.$strip>>;
|
|
45627
|
-
fileReviews: z.ZodOptional<z.ZodObject<{
|
|
45628
|
-
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
45629
|
-
disabledKinds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
45630
|
-
}, z.core.$strip>>;
|
|
45631
|
-
modelTuningProfile: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
45632
|
-
meesterGezelId: z.ZodOptional<z.ZodString>;
|
|
45633
|
-
sharedProjectId: z.ZodOptional<z.ZodString>;
|
|
45634
|
-
klerkGezelId: z.ZodOptional<z.ZodString>;
|
|
45635
|
-
boekwachterGezelId: z.ZodOptional<z.ZodString>;
|
|
45636
|
-
keurmeesterGezelId: z.ZodOptional<z.ZodString>;
|
|
45637
|
-
openaiEndpoints: z.ZodOptional<z.ZodObject<{
|
|
45638
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
45639
|
-
servingGezelId: z.ZodOptional<z.ZodString>;
|
|
45640
|
-
supportingBehaviors: z.ZodOptional<z.ZodBoolean>;
|
|
45641
|
-
emulateOllama: z.ZodOptional<z.ZodBoolean>;
|
|
45642
|
-
}, z.core.$strip>>;
|
|
45643
|
-
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
45644
|
-
ollamaStreamingIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45645
|
-
ollamaPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45646
|
-
ollamaTurnTimeoutMin: z.ZodOptional<z.ZodNumber>;
|
|
45647
|
-
ollamaNumPredict: z.ZodOptional<z.ZodNumber>;
|
|
45648
|
-
ollamaThink: z.ZodOptional<z.ZodBoolean>;
|
|
45649
|
-
llamaCppModelPath: z.ZodOptional<z.ZodString>;
|
|
45650
|
-
llamaCppBaseUrl: z.ZodOptional<z.ZodString>;
|
|
45651
|
-
llamaCppNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
45652
|
-
llamaCppContextSizing: z.ZodOptional<z.ZodEnum<{
|
|
45653
|
-
adaptive: "adaptive";
|
|
45654
|
-
"model-max": "model-max";
|
|
45655
|
-
}>>;
|
|
45656
|
-
modelContextOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
45657
|
-
ds4BaseUrl: z.ZodOptional<z.ZodString>;
|
|
45658
|
-
ds4ModelPath: z.ZodOptional<z.ZodString>;
|
|
45659
|
-
ds4NumCtx: z.ZodOptional<z.ZodNumber>;
|
|
45660
|
-
ds4SsdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
45661
|
-
ds4CacheExpertsGb: z.ZodOptional<z.ZodNumber>;
|
|
45662
|
-
ds4Dspark: z.ZodOptional<z.ZodEnum<{
|
|
45663
|
-
auto: "auto";
|
|
45664
|
-
off: "off";
|
|
45665
|
-
on: "on";
|
|
45666
|
-
}>>;
|
|
45667
|
-
ds4DsparkModelPath: z.ZodOptional<z.ZodString>;
|
|
45668
|
-
llamaCppStreamingIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45669
|
-
llamaCppPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45670
|
-
llamaCppBackendOverride: z.ZodOptional<z.ZodEnum<{
|
|
45671
|
-
auto: "auto";
|
|
45672
|
-
cuda: "cuda";
|
|
45673
|
-
vulkan: "vulkan";
|
|
45674
|
-
metal: "metal";
|
|
45675
|
-
cpu: "cpu";
|
|
45676
|
-
}>>;
|
|
45677
|
-
autoDownloadEngines: z.ZodOptional<z.ZodBoolean>;
|
|
45678
|
-
engineSignaturePolicy: z.ZodOptional<z.ZodEnum<{
|
|
45679
|
-
require: "require";
|
|
45680
|
-
off: "off";
|
|
45681
|
-
prefer: "prefer";
|
|
45682
|
-
}>>;
|
|
45683
|
-
llamaCppKvCacheType: z.ZodOptional<z.ZodEnum<{
|
|
45684
|
-
f16: "f16";
|
|
45685
|
-
q8_0: "q8_0";
|
|
45686
|
-
q4_0: "q4_0";
|
|
45687
|
-
}>>;
|
|
45688
|
-
llamaCppMlock: z.ZodOptional<z.ZodBoolean>;
|
|
45689
45464
|
llamaCppFlashAttn: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
|
|
45690
45465
|
auto: "auto";
|
|
45691
45466
|
off: "off";
|
|
@@ -46178,105 +45953,54 @@ declare const GezelConfigSchema: z.ZodObject<{
|
|
|
46178
45953
|
gezels: z.ZodOptional<z.ZodString>;
|
|
46179
45954
|
projects: z.ZodOptional<z.ZodString>;
|
|
46180
45955
|
}, z.core.$strip>>;
|
|
46181
|
-
|
|
46182
|
-
|
|
46183
|
-
|
|
46184
|
-
|
|
46185
|
-
|
|
46186
|
-
|
|
46187
|
-
|
|
46188
|
-
documents: "documents";
|
|
46189
|
-
history: "history";
|
|
46190
|
-
gezels: "gezels";
|
|
46191
|
-
projects: "projects";
|
|
46192
|
-
benchmarks: "benchmarks";
|
|
46193
|
-
handboek: "handboek";
|
|
46194
|
-
}>;
|
|
46195
|
-
type RecentTabArea = z.infer<typeof RecentTabAreaSchema>;
|
|
46196
|
-
/**
|
|
46197
|
-
* `pinned: true` exempts a tab from MRU eviction. The cap stays the
|
|
46198
|
-
* same for unpinned tabs; pinned tabs can grow the list past it.
|
|
46199
|
-
* Optional / absent = unpinned.
|
|
46200
|
-
*/
|
|
46201
|
-
declare const RecentTabSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
46202
|
-
kind: z.ZodLiteral<"project">;
|
|
46203
|
-
id: z.ZodString;
|
|
46204
|
-
at: z.ZodNumber;
|
|
46205
|
-
order: z.ZodNumber;
|
|
46206
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46207
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
46208
|
-
kind: z.ZodLiteral<"gezel">;
|
|
46209
|
-
id: z.ZodString;
|
|
46210
|
-
at: z.ZodNumber;
|
|
46211
|
-
order: z.ZodNumber;
|
|
46212
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46213
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
46214
|
-
kind: z.ZodLiteral<"document">;
|
|
46215
|
-
path: z.ZodString;
|
|
46216
|
-
at: z.ZodNumber;
|
|
46217
|
-
order: z.ZodNumber;
|
|
46218
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46219
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
46220
|
-
kind: z.ZodLiteral<"task">;
|
|
46221
|
-
ref: z.ZodString;
|
|
46222
|
-
at: z.ZodNumber;
|
|
46223
|
-
order: z.ZodNumber;
|
|
46224
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46225
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
46226
|
-
kind: z.ZodLiteral<"area">;
|
|
46227
|
-
area: z.ZodEnum<{
|
|
46228
|
-
scripts: "scripts";
|
|
46229
|
-
knowledge: "knowledge";
|
|
46230
|
-
craftbooks: "craftbooks";
|
|
46231
|
-
tasks: "tasks";
|
|
46232
|
-
settings: "settings";
|
|
46233
|
-
documents: "documents";
|
|
46234
|
-
history: "history";
|
|
46235
|
-
gezels: "gezels";
|
|
46236
|
-
projects: "projects";
|
|
46237
|
-
benchmarks: "benchmarks";
|
|
46238
|
-
handboek: "handboek";
|
|
46239
|
-
}>;
|
|
46240
|
-
at: z.ZodNumber;
|
|
46241
|
-
order: z.ZodNumber;
|
|
46242
|
-
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46243
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
46244
|
-
kind: z.ZodLiteral<"script">;
|
|
46245
|
-
projectId: z.ZodString;
|
|
46246
|
-
name: z.ZodString;
|
|
46247
|
-
scope: z.ZodOptional<z.ZodEnum<{
|
|
46248
|
-
user: "user";
|
|
46249
|
-
standard: "standard";
|
|
45956
|
+
llamaCppLoadMode: z.ZodOptional<z.ZodEnum<{
|
|
45957
|
+
auto: "auto";
|
|
45958
|
+
none: "none";
|
|
45959
|
+
mmap: "mmap";
|
|
45960
|
+
mlock: "mlock";
|
|
45961
|
+
"mmap+mlock": "mmap+mlock";
|
|
45962
|
+
dio: "dio";
|
|
46250
45963
|
}>>;
|
|
46251
|
-
|
|
46252
|
-
|
|
46253
|
-
|
|
46254
|
-
|
|
46255
|
-
kind: z.ZodLiteral<"craftbook">;
|
|
46256
|
-
id: z.ZodString;
|
|
46257
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
46258
|
-
project: "project";
|
|
46259
|
-
bundled: "bundled";
|
|
46260
|
-
local: "local";
|
|
45964
|
+
llamaCppLazyMode: z.ZodOptional<z.ZodEnum<{
|
|
45965
|
+
auto: "auto";
|
|
45966
|
+
off: "off";
|
|
45967
|
+
on: "on";
|
|
46261
45968
|
}>>;
|
|
46262
|
-
|
|
46263
|
-
|
|
46264
|
-
|
|
46265
|
-
|
|
46266
|
-
|
|
46267
|
-
|
|
46268
|
-
|
|
46269
|
-
|
|
46270
|
-
|
|
46271
|
-
|
|
46272
|
-
}
|
|
46273
|
-
|
|
46274
|
-
|
|
46275
|
-
|
|
46276
|
-
|
|
46277
|
-
|
|
46278
|
-
|
|
46279
|
-
|
|
45969
|
+
llamaCppReasoningPreserve: z.ZodOptional<z.ZodBoolean>;
|
|
45970
|
+
llamaCppNCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
45971
|
+
llamaCppStreamingIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45972
|
+
llamaCppPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
45973
|
+
llamaCppBackendOverride: z.ZodOptional<z.ZodEnum<{
|
|
45974
|
+
auto: "auto";
|
|
45975
|
+
cuda: "cuda";
|
|
45976
|
+
vulkan: "vulkan";
|
|
45977
|
+
metal: "metal";
|
|
45978
|
+
cpu: "cpu";
|
|
45979
|
+
}>>;
|
|
45980
|
+
autoDownloadEngines: z.ZodOptional<z.ZodBoolean>;
|
|
45981
|
+
engineSignaturePolicy: z.ZodOptional<z.ZodEnum<{
|
|
45982
|
+
require: "require";
|
|
45983
|
+
off: "off";
|
|
45984
|
+
prefer: "prefer";
|
|
45985
|
+
}>>;
|
|
45986
|
+
llamaCppKvCacheType: z.ZodOptional<z.ZodEnum<{
|
|
45987
|
+
f16: "f16";
|
|
45988
|
+
q8_0: "q8_0";
|
|
45989
|
+
q4_0: "q4_0";
|
|
45990
|
+
}>>;
|
|
45991
|
+
llamaCppMlock: z.ZodOptional<z.ZodBoolean>;
|
|
45992
|
+
ds4BaseUrl: z.ZodOptional<z.ZodString>;
|
|
45993
|
+
ds4ModelPath: z.ZodOptional<z.ZodString>;
|
|
45994
|
+
ds4VisionEncoderPath: z.ZodOptional<z.ZodString>;
|
|
45995
|
+
ds4NumCtx: z.ZodOptional<z.ZodNumber>;
|
|
45996
|
+
ds4SsdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
45997
|
+
ds4CacheExpertsGb: z.ZodOptional<z.ZodNumber>;
|
|
45998
|
+
ds4Dspark: z.ZodOptional<z.ZodEnum<{
|
|
45999
|
+
auto: "auto";
|
|
46000
|
+
off: "off";
|
|
46001
|
+
on: "on";
|
|
46002
|
+
}>>;
|
|
46003
|
+
ds4DsparkModelPath: z.ZodOptional<z.ZodString>;
|
|
46280
46004
|
provider: z.ZodOptional<z.ZodEnum<{
|
|
46281
46005
|
"llama-cpp": "llama-cpp";
|
|
46282
46006
|
mlx: "mlx";
|
|
@@ -46294,6 +46018,10 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
46294
46018
|
"machine-service": "machine-service";
|
|
46295
46019
|
"per-user": "per-user";
|
|
46296
46020
|
}>>;
|
|
46021
|
+
service: z.ZodOptional<z.ZodObject<{
|
|
46022
|
+
url: z.ZodString;
|
|
46023
|
+
token: z.ZodString;
|
|
46024
|
+
}, z.core.$strip>>;
|
|
46297
46025
|
localEngineIdleTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
46298
46026
|
deviceSafety: z.ZodOptional<z.ZodObject<{
|
|
46299
46027
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -46316,6 +46044,8 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
46316
46044
|
showPoppetjes: z.ZodOptional<z.ZodBoolean>;
|
|
46317
46045
|
narrateAssistantReplies: z.ZodOptional<z.ZodBoolean>;
|
|
46318
46046
|
defaultSttModel: z.ZodOptional<z.ZodString>;
|
|
46047
|
+
microphoneDeviceId: z.ZodOptional<z.ZodString>;
|
|
46048
|
+
microphoneDeviceLabel: z.ZodOptional<z.ZodString>;
|
|
46319
46049
|
githubToken: z.ZodOptional<z.ZodString>;
|
|
46320
46050
|
githubAuth: z.ZodOptional<z.ZodObject<{
|
|
46321
46051
|
kind: z.ZodEnum<{
|
|
@@ -46493,6 +46223,20 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
46493
46223
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
46494
46224
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
46495
46225
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
46226
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
46227
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
46228
|
+
auto: "auto";
|
|
46229
|
+
none: "none";
|
|
46230
|
+
mmap: "mmap";
|
|
46231
|
+
mlock: "mlock";
|
|
46232
|
+
"mmap+mlock": "mmap+mlock";
|
|
46233
|
+
dio: "dio";
|
|
46234
|
+
}>>;
|
|
46235
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
46236
|
+
auto: "auto";
|
|
46237
|
+
off: "off";
|
|
46238
|
+
on: "on";
|
|
46239
|
+
}>>;
|
|
46496
46240
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
46497
46241
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
46498
46242
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -46635,32 +46379,114 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
46635
46379
|
ollamaPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
46636
46380
|
ollamaTurnTimeoutMin: z.ZodOptional<z.ZodNumber>;
|
|
46637
46381
|
ollamaNumPredict: z.ZodOptional<z.ZodNumber>;
|
|
46382
|
+
ollamaThink: z.ZodOptional<z.ZodBoolean>;
|
|
46383
|
+
llamaCppModelPath: z.ZodOptional<z.ZodString>;
|
|
46384
|
+
llamaCppBaseUrl: z.ZodOptional<z.ZodString>;
|
|
46638
46385
|
llamaCppNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
46639
46386
|
llamaCppContextSizing: z.ZodOptional<z.ZodEnum<{
|
|
46640
46387
|
adaptive: "adaptive";
|
|
46641
46388
|
"model-max": "model-max";
|
|
46642
46389
|
}>>;
|
|
46643
46390
|
modelContextOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
46644
|
-
|
|
46645
|
-
|
|
46646
|
-
|
|
46647
|
-
|
|
46648
|
-
|
|
46649
|
-
|
|
46650
|
-
|
|
46651
|
-
|
|
46652
|
-
|
|
46391
|
+
}, z.core.$strip>;
|
|
46392
|
+
declare const RecentTabAreaSchema: z.ZodEnum<{
|
|
46393
|
+
scripts: "scripts";
|
|
46394
|
+
knowledge: "knowledge";
|
|
46395
|
+
craftbooks: "craftbooks";
|
|
46396
|
+
tasks: "tasks";
|
|
46397
|
+
settings: "settings";
|
|
46398
|
+
documents: "documents";
|
|
46399
|
+
history: "history";
|
|
46400
|
+
gezels: "gezels";
|
|
46401
|
+
projects: "projects";
|
|
46402
|
+
benchmarks: "benchmarks";
|
|
46403
|
+
handboek: "handboek";
|
|
46404
|
+
}>;
|
|
46405
|
+
type RecentTabArea = z.infer<typeof RecentTabAreaSchema>;
|
|
46406
|
+
/**
|
|
46407
|
+
* `pinned: true` exempts a tab from MRU eviction. The cap stays the
|
|
46408
|
+
* same for unpinned tabs; pinned tabs can grow the list past it.
|
|
46409
|
+
* Optional / absent = unpinned.
|
|
46410
|
+
*/
|
|
46411
|
+
declare const RecentTabSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
46412
|
+
kind: z.ZodLiteral<"project">;
|
|
46413
|
+
id: z.ZodString;
|
|
46414
|
+
at: z.ZodNumber;
|
|
46415
|
+
order: z.ZodNumber;
|
|
46416
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46417
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46418
|
+
kind: z.ZodLiteral<"gezel">;
|
|
46419
|
+
id: z.ZodString;
|
|
46420
|
+
at: z.ZodNumber;
|
|
46421
|
+
order: z.ZodNumber;
|
|
46422
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46423
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46424
|
+
kind: z.ZodLiteral<"document">;
|
|
46425
|
+
path: z.ZodString;
|
|
46426
|
+
at: z.ZodNumber;
|
|
46427
|
+
order: z.ZodNumber;
|
|
46428
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46429
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46430
|
+
kind: z.ZodLiteral<"task">;
|
|
46431
|
+
ref: z.ZodString;
|
|
46432
|
+
at: z.ZodNumber;
|
|
46433
|
+
order: z.ZodNumber;
|
|
46434
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46435
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46436
|
+
kind: z.ZodLiteral<"area">;
|
|
46437
|
+
area: z.ZodEnum<{
|
|
46438
|
+
scripts: "scripts";
|
|
46439
|
+
knowledge: "knowledge";
|
|
46440
|
+
craftbooks: "craftbooks";
|
|
46441
|
+
tasks: "tasks";
|
|
46442
|
+
settings: "settings";
|
|
46443
|
+
documents: "documents";
|
|
46444
|
+
history: "history";
|
|
46445
|
+
gezels: "gezels";
|
|
46446
|
+
projects: "projects";
|
|
46447
|
+
benchmarks: "benchmarks";
|
|
46448
|
+
handboek: "handboek";
|
|
46449
|
+
}>;
|
|
46450
|
+
at: z.ZodNumber;
|
|
46451
|
+
order: z.ZodNumber;
|
|
46452
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46453
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46454
|
+
kind: z.ZodLiteral<"script">;
|
|
46455
|
+
projectId: z.ZodString;
|
|
46456
|
+
name: z.ZodString;
|
|
46457
|
+
scope: z.ZodOptional<z.ZodEnum<{
|
|
46458
|
+
user: "user";
|
|
46459
|
+
standard: "standard";
|
|
46653
46460
|
}>>;
|
|
46654
|
-
|
|
46655
|
-
|
|
46656
|
-
|
|
46657
|
-
|
|
46658
|
-
|
|
46659
|
-
|
|
46660
|
-
|
|
46661
|
-
|
|
46461
|
+
at: z.ZodNumber;
|
|
46462
|
+
order: z.ZodNumber;
|
|
46463
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46464
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46465
|
+
kind: z.ZodLiteral<"craftbook">;
|
|
46466
|
+
id: z.ZodString;
|
|
46467
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
46468
|
+
project: "project";
|
|
46469
|
+
bundled: "bundled";
|
|
46470
|
+
local: "local";
|
|
46662
46471
|
}>>;
|
|
46663
|
-
|
|
46472
|
+
at: z.ZodNumber;
|
|
46473
|
+
order: z.ZodNumber;
|
|
46474
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46475
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
46476
|
+
kind: z.ZodLiteral<"craftbook-script">;
|
|
46477
|
+
craftbookId: z.ZodString;
|
|
46478
|
+
name: z.ZodString;
|
|
46479
|
+
at: z.ZodNumber;
|
|
46480
|
+
order: z.ZodNumber;
|
|
46481
|
+
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
46482
|
+
}, z.core.$strip>], "kind">;
|
|
46483
|
+
type RecentTab = z.infer<typeof RecentTabSchema>;
|
|
46484
|
+
type GezelConfig = z.infer<typeof GezelConfigSchema>;
|
|
46485
|
+
/** Request shape for PUT /api/config. Mirrors `GezelConfig` but
|
|
46486
|
+
* widens select fields to accept explicit `null` as a
|
|
46487
|
+
* reset-to-default signal — the store treats null as "delete the
|
|
46488
|
+
* key" so the on-disk read shape stays narrow. */
|
|
46489
|
+
declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
46664
46490
|
llamaCppNGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
46665
46491
|
llamaCppNCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
46666
46492
|
llamaCppCacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
@@ -47121,6 +46947,433 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
47121
46947
|
at: z.ZodNumber;
|
|
47122
46948
|
order: z.ZodNumber;
|
|
47123
46949
|
}, z.core.$strip>], "kind">>>;
|
|
46950
|
+
llamaCppStreamingIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
46951
|
+
llamaCppPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
46952
|
+
autoDownloadEngines: z.ZodOptional<z.ZodBoolean>;
|
|
46953
|
+
engineSignaturePolicy: z.ZodOptional<z.ZodEnum<{
|
|
46954
|
+
require: "require";
|
|
46955
|
+
off: "off";
|
|
46956
|
+
prefer: "prefer";
|
|
46957
|
+
}>>;
|
|
46958
|
+
ds4BaseUrl: z.ZodOptional<z.ZodString>;
|
|
46959
|
+
ds4ModelPath: z.ZodOptional<z.ZodString>;
|
|
46960
|
+
ds4VisionEncoderPath: z.ZodOptional<z.ZodString>;
|
|
46961
|
+
ds4NumCtx: z.ZodOptional<z.ZodNumber>;
|
|
46962
|
+
ds4SsdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
46963
|
+
ds4CacheExpertsGb: z.ZodOptional<z.ZodNumber>;
|
|
46964
|
+
ds4Dspark: z.ZodOptional<z.ZodEnum<{
|
|
46965
|
+
auto: "auto";
|
|
46966
|
+
off: "off";
|
|
46967
|
+
on: "on";
|
|
46968
|
+
}>>;
|
|
46969
|
+
ds4DsparkModelPath: z.ZodOptional<z.ZodString>;
|
|
46970
|
+
provider: z.ZodOptional<z.ZodEnum<{
|
|
46971
|
+
"llama-cpp": "llama-cpp";
|
|
46972
|
+
mlx: "mlx";
|
|
46973
|
+
copilot: "copilot";
|
|
46974
|
+
openai: "openai";
|
|
46975
|
+
anthropic: "anthropic";
|
|
46976
|
+
"anthropic-cli": "anthropic-cli";
|
|
46977
|
+
"codex-cli": "codex-cli";
|
|
46978
|
+
ollama: "ollama";
|
|
46979
|
+
ds4: "ds4";
|
|
46980
|
+
remote: "remote";
|
|
46981
|
+
}>>;
|
|
46982
|
+
hosting: z.ZodOptional<z.ZodEnum<{
|
|
46983
|
+
auto: "auto";
|
|
46984
|
+
"machine-service": "machine-service";
|
|
46985
|
+
"per-user": "per-user";
|
|
46986
|
+
}>>;
|
|
46987
|
+
localEngineIdleTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
46988
|
+
deviceSafety: z.ZodOptional<z.ZodObject<{
|
|
46989
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
46990
|
+
off: "off";
|
|
46991
|
+
observe: "observe";
|
|
46992
|
+
guard: "guard";
|
|
46993
|
+
}>>;
|
|
46994
|
+
maxStartTemperatureC: z.ZodOptional<z.ZodNumber>;
|
|
46995
|
+
resumeTemperatureC: z.ZodOptional<z.ZodNumber>;
|
|
46996
|
+
minThermalMarginC: z.ZodOptional<z.ZodNumber>;
|
|
46997
|
+
pollIntervalMs: z.ZodOptional<z.ZodNumber>;
|
|
46998
|
+
maxWaitMs: z.ZodOptional<z.ZodNumber>;
|
|
46999
|
+
consecutiveHealthySamples: z.ZodOptional<z.ZodNumber>;
|
|
47000
|
+
onTelemetryFailure: z.ZodOptional<z.ZodEnum<{
|
|
47001
|
+
allow: "allow";
|
|
47002
|
+
block: "block";
|
|
47003
|
+
}>>;
|
|
47004
|
+
}, z.core.$strip>>;
|
|
47005
|
+
roleBasedNameOnlyMode: z.ZodOptional<z.ZodBoolean>;
|
|
47006
|
+
showPoppetjes: z.ZodOptional<z.ZodBoolean>;
|
|
47007
|
+
narrateAssistantReplies: z.ZodOptional<z.ZodBoolean>;
|
|
47008
|
+
defaultSttModel: z.ZodOptional<z.ZodString>;
|
|
47009
|
+
githubToken: z.ZodOptional<z.ZodString>;
|
|
47010
|
+
githubAuth: z.ZodOptional<z.ZodObject<{
|
|
47011
|
+
kind: z.ZodEnum<{
|
|
47012
|
+
oauth: "oauth";
|
|
47013
|
+
pat: "pat";
|
|
47014
|
+
}>;
|
|
47015
|
+
login: z.ZodOptional<z.ZodString>;
|
|
47016
|
+
name: z.ZodOptional<z.ZodString>;
|
|
47017
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
47018
|
+
scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47019
|
+
acquiredAt: z.ZodOptional<z.ZodString>;
|
|
47020
|
+
}, z.core.$strip>>;
|
|
47021
|
+
oauthClients: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47022
|
+
clientId: z.ZodString;
|
|
47023
|
+
}, z.core.$strip>>>;
|
|
47024
|
+
openaiApiKey: z.ZodOptional<z.ZodString>;
|
|
47025
|
+
openaiOrganization: z.ZodOptional<z.ZodString>;
|
|
47026
|
+
anthropicApiKey: z.ZodOptional<z.ZodString>;
|
|
47027
|
+
googleAiApiKey: z.ZodOptional<z.ZodString>;
|
|
47028
|
+
imageProvider: z.ZodOptional<z.ZodEnum<{
|
|
47029
|
+
mock: "mock";
|
|
47030
|
+
openai: "openai";
|
|
47031
|
+
"sd-cpp": "sd-cpp";
|
|
47032
|
+
"google-ai": "google-ai";
|
|
47033
|
+
}>>;
|
|
47034
|
+
defaultImageModel: z.ZodOptional<z.ZodObject<{
|
|
47035
|
+
'sd-cpp': z.ZodOptional<z.ZodString>;
|
|
47036
|
+
'google-ai': z.ZodOptional<z.ZodString>;
|
|
47037
|
+
openai: z.ZodOptional<z.ZodString>;
|
|
47038
|
+
}, z.core.$strip>>;
|
|
47039
|
+
imageGenerationConfirmation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"always-allow">, z.ZodLiteral<"ask">, z.ZodObject<{
|
|
47040
|
+
mode: z.ZodLiteral<"snooze">;
|
|
47041
|
+
until: z.ZodString;
|
|
47042
|
+
}, z.core.$strip>]>>;
|
|
47043
|
+
gpuMemoryPolicy: z.ZodOptional<z.ZodEnum<{
|
|
47044
|
+
auto: "auto";
|
|
47045
|
+
coexist: "coexist";
|
|
47046
|
+
swap: "swap";
|
|
47047
|
+
}>>;
|
|
47048
|
+
videoProvider: z.ZodOptional<z.ZodEnum<{
|
|
47049
|
+
mock: "mock";
|
|
47050
|
+
diffusers: "diffusers";
|
|
47051
|
+
}>>;
|
|
47052
|
+
defaultVideoModel: z.ZodOptional<z.ZodString>;
|
|
47053
|
+
videoGenerationConfirmation: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"always-allow">, z.ZodLiteral<"ask">, z.ZodObject<{
|
|
47054
|
+
mode: z.ZodLiteral<"snooze">;
|
|
47055
|
+
until: z.ZodString;
|
|
47056
|
+
}, z.core.$strip>]>>;
|
|
47057
|
+
recognitionProvider: z.ZodOptional<z.ZodEnum<{
|
|
47058
|
+
"llama-cpp": "llama-cpp";
|
|
47059
|
+
mlx: "mlx";
|
|
47060
|
+
mock: "mock";
|
|
47061
|
+
}>>;
|
|
47062
|
+
defaultRecognitionModel: z.ZodOptional<z.ZodString>;
|
|
47063
|
+
recognition: z.ZodOptional<z.ZodObject<{
|
|
47064
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
47065
|
+
always: "always";
|
|
47066
|
+
auto: "auto";
|
|
47067
|
+
off: "off";
|
|
47068
|
+
}>>;
|
|
47069
|
+
modes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
47070
|
+
describe: "describe";
|
|
47071
|
+
ocr: "ocr";
|
|
47072
|
+
ui: "ui";
|
|
47073
|
+
extract: "extract";
|
|
47074
|
+
}>>>;
|
|
47075
|
+
maxImagesPerTurn: z.ZodOptional<z.ZodNumber>;
|
|
47076
|
+
timeoutMsPerImage: z.ZodOptional<z.ZodNumber>;
|
|
47077
|
+
maxDigestChars: z.ZodOptional<z.ZodNumber>;
|
|
47078
|
+
maxMegapixels: z.ZodOptional<z.ZodNumber>;
|
|
47079
|
+
}, z.core.$strip>>;
|
|
47080
|
+
nativeVision: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47081
|
+
webhookBearerToken: z.ZodOptional<z.ZodString>;
|
|
47082
|
+
webhookBasicAuth: z.ZodOptional<z.ZodString>;
|
|
47083
|
+
braveSearchApiKey: z.ZodOptional<z.ZodString>;
|
|
47084
|
+
tavilyApiKey: z.ZodOptional<z.ZodString>;
|
|
47085
|
+
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
47086
|
+
autoStartOllama: z.ZodOptional<z.ZodBoolean>;
|
|
47087
|
+
defaultModel: z.ZodOptional<z.ZodObject<{
|
|
47088
|
+
copilot: z.ZodOptional<z.ZodString>;
|
|
47089
|
+
openai: z.ZodOptional<z.ZodString>;
|
|
47090
|
+
anthropic: z.ZodOptional<z.ZodString>;
|
|
47091
|
+
'anthropic-cli': z.ZodOptional<z.ZodString>;
|
|
47092
|
+
'codex-cli': z.ZodOptional<z.ZodString>;
|
|
47093
|
+
ollama: z.ZodOptional<z.ZodString>;
|
|
47094
|
+
'llama-cpp': z.ZodOptional<z.ZodString>;
|
|
47095
|
+
mlx: z.ZodOptional<z.ZodString>;
|
|
47096
|
+
ds4: z.ZodOptional<z.ZodString>;
|
|
47097
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
47098
|
+
}, z.core.$strip>>;
|
|
47099
|
+
defaultReasoningEffort: z.ZodOptional<z.ZodObject<{
|
|
47100
|
+
copilot: z.ZodOptional<z.ZodString>;
|
|
47101
|
+
openai: z.ZodOptional<z.ZodString>;
|
|
47102
|
+
anthropic: z.ZodOptional<z.ZodString>;
|
|
47103
|
+
'anthropic-cli': z.ZodOptional<z.ZodString>;
|
|
47104
|
+
'codex-cli': z.ZodOptional<z.ZodString>;
|
|
47105
|
+
ollama: z.ZodOptional<z.ZodString>;
|
|
47106
|
+
'llama-cpp': z.ZodOptional<z.ZodString>;
|
|
47107
|
+
mlx: z.ZodOptional<z.ZodString>;
|
|
47108
|
+
ds4: z.ZodOptional<z.ZodString>;
|
|
47109
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
47110
|
+
}, z.core.$strip>>;
|
|
47111
|
+
modelTuning: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47112
|
+
sampling: z.ZodOptional<z.ZodObject<{
|
|
47113
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
47114
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
47115
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
47116
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
47117
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
47118
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
47119
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47120
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
47121
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47122
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
47123
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
47124
|
+
multiplier: z.ZodNumber;
|
|
47125
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
47126
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
47127
|
+
}, z.core.$strip>>;
|
|
47128
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
47129
|
+
probability: z.ZodNumber;
|
|
47130
|
+
threshold: z.ZodNumber;
|
|
47131
|
+
}, z.core.$strip>>;
|
|
47132
|
+
}, z.core.$strip>>;
|
|
47133
|
+
samplingWhenThinking: z.ZodOptional<z.ZodObject<{
|
|
47134
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
47135
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
47136
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
47137
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
47138
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
47139
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
47140
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47141
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
47142
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47143
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
47144
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
47145
|
+
multiplier: z.ZodNumber;
|
|
47146
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
47147
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
47148
|
+
}, z.core.$strip>>;
|
|
47149
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
47150
|
+
probability: z.ZodNumber;
|
|
47151
|
+
threshold: z.ZodNumber;
|
|
47152
|
+
}, z.core.$strip>>;
|
|
47153
|
+
}, z.core.$strip>>;
|
|
47154
|
+
reasoning: z.ZodOptional<z.ZodObject<{
|
|
47155
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
47156
|
+
medium: "medium";
|
|
47157
|
+
low: "low";
|
|
47158
|
+
high: "high";
|
|
47159
|
+
}>>;
|
|
47160
|
+
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
47161
|
+
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
47162
|
+
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
47163
|
+
}, z.core.$strip>>;
|
|
47164
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
47165
|
+
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
47166
|
+
text: "text";
|
|
47167
|
+
json_object: "json_object";
|
|
47168
|
+
}>>;
|
|
47169
|
+
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
47170
|
+
grammar: z.ZodOptional<z.ZodString>;
|
|
47171
|
+
}, z.core.$strip>>;
|
|
47172
|
+
toolChoice: z.ZodOptional<z.ZodEnum<{
|
|
47173
|
+
required: "required";
|
|
47174
|
+
auto: "auto";
|
|
47175
|
+
none: "none";
|
|
47176
|
+
}>>;
|
|
47177
|
+
promptTags: z.ZodOptional<z.ZodObject<{
|
|
47178
|
+
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
47179
|
+
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
47180
|
+
}, z.core.$strip>>;
|
|
47181
|
+
engine: z.ZodOptional<z.ZodObject<{
|
|
47182
|
+
llamaCpp: z.ZodOptional<z.ZodObject<{
|
|
47183
|
+
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
47184
|
+
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
47185
|
+
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
47186
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
47187
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
47188
|
+
auto: "auto";
|
|
47189
|
+
none: "none";
|
|
47190
|
+
mmap: "mmap";
|
|
47191
|
+
mlock: "mlock";
|
|
47192
|
+
"mmap+mlock": "mmap+mlock";
|
|
47193
|
+
dio: "dio";
|
|
47194
|
+
}>>;
|
|
47195
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
47196
|
+
auto: "auto";
|
|
47197
|
+
off: "off";
|
|
47198
|
+
on: "on";
|
|
47199
|
+
}>>;
|
|
47200
|
+
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
47201
|
+
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
47202
|
+
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
47203
|
+
auto: "auto";
|
|
47204
|
+
off: "off";
|
|
47205
|
+
on: "on";
|
|
47206
|
+
}>>;
|
|
47207
|
+
ubatchSize: z.ZodOptional<z.ZodNumber>;
|
|
47208
|
+
contextSize: z.ZodOptional<z.ZodNumber>;
|
|
47209
|
+
chatTemplate: z.ZodOptional<z.ZodString>;
|
|
47210
|
+
threads: z.ZodOptional<z.ZodNumber>;
|
|
47211
|
+
batchSize: z.ZodOptional<z.ZodNumber>;
|
|
47212
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
47213
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
47214
|
+
none: "none";
|
|
47215
|
+
"draft-mtp": "draft-mtp";
|
|
47216
|
+
"draft-eagle3": "draft-eagle3";
|
|
47217
|
+
"draft-dflash": "draft-dflash";
|
|
47218
|
+
"draft-simple": "draft-simple";
|
|
47219
|
+
"ngram-mod": "ngram-mod";
|
|
47220
|
+
"ngram-simple": "ngram-simple";
|
|
47221
|
+
"ngram-map-k": "ngram-map-k";
|
|
47222
|
+
"ngram-map-k4v": "ngram-map-k4v";
|
|
47223
|
+
"ngram-cache": "ngram-cache";
|
|
47224
|
+
}>>;
|
|
47225
|
+
mtp: z.ZodOptional<z.ZodBoolean>;
|
|
47226
|
+
draftModelId: z.ZodOptional<z.ZodString>;
|
|
47227
|
+
nMax: z.ZodOptional<z.ZodNumber>;
|
|
47228
|
+
}, z.core.$strip>>;
|
|
47229
|
+
}, z.core.$strip>>;
|
|
47230
|
+
}, z.core.$strip>>;
|
|
47231
|
+
profiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47232
|
+
sampling: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
47233
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
47234
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
47235
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
47236
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
47237
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
47238
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
47239
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47240
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
47241
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47242
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
47243
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
47244
|
+
multiplier: z.ZodNumber;
|
|
47245
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
47246
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
47247
|
+
}, z.core.$strip>>;
|
|
47248
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
47249
|
+
probability: z.ZodNumber;
|
|
47250
|
+
threshold: z.ZodNumber;
|
|
47251
|
+
}, z.core.$strip>>;
|
|
47252
|
+
}, z.core.$strip>>>;
|
|
47253
|
+
samplingWhenThinking: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
47254
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
47255
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
47256
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
47257
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
47258
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
47259
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
47260
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47261
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
47262
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
47263
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
47264
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
47265
|
+
multiplier: z.ZodNumber;
|
|
47266
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
47267
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
47268
|
+
}, z.core.$strip>>;
|
|
47269
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
47270
|
+
probability: z.ZodNumber;
|
|
47271
|
+
threshold: z.ZodNumber;
|
|
47272
|
+
}, z.core.$strip>>;
|
|
47273
|
+
}, z.core.$strip>>>;
|
|
47274
|
+
reasoning: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
47275
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
47276
|
+
medium: "medium";
|
|
47277
|
+
low: "low";
|
|
47278
|
+
high: "high";
|
|
47279
|
+
}>>;
|
|
47280
|
+
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
47281
|
+
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
47282
|
+
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
47283
|
+
}, z.core.$strip>>>;
|
|
47284
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
47285
|
+
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
47286
|
+
text: "text";
|
|
47287
|
+
json_object: "json_object";
|
|
47288
|
+
}>>;
|
|
47289
|
+
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
47290
|
+
grammar: z.ZodOptional<z.ZodString>;
|
|
47291
|
+
}, z.core.$strip>>>;
|
|
47292
|
+
toolChoice: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
47293
|
+
required: "required";
|
|
47294
|
+
auto: "auto";
|
|
47295
|
+
none: "none";
|
|
47296
|
+
}>>>;
|
|
47297
|
+
promptTags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
47298
|
+
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
47299
|
+
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
47300
|
+
}, z.core.$strip>>>;
|
|
47301
|
+
}, z.core.$strip>>>;
|
|
47302
|
+
}, z.core.$strip>>>;
|
|
47303
|
+
modelFitness: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
47304
|
+
remoteServing: z.ZodOptional<z.ZodObject<{
|
|
47305
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
47306
|
+
bindAddress: z.ZodOptional<z.ZodString>;
|
|
47307
|
+
port: z.ZodOptional<z.ZodNumber>;
|
|
47308
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
47309
|
+
equal: "equal";
|
|
47310
|
+
"below-local": "below-local";
|
|
47311
|
+
"above-local": "above-local";
|
|
47312
|
+
}>>;
|
|
47313
|
+
reserveLocalGb: z.ZodOptional<z.ZodNumber>;
|
|
47314
|
+
allowModels: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47315
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
47316
|
+
maxConcurrentPerDevice: z.ZodOptional<z.ZodNumber>;
|
|
47317
|
+
maxChatPerDevice: z.ZodOptional<z.ZodNumber>;
|
|
47318
|
+
requestsPerMinute: z.ZodOptional<z.ZodNumber>;
|
|
47319
|
+
}, z.core.$strip>>;
|
|
47320
|
+
}, z.core.$strip>>;
|
|
47321
|
+
fileReviews: z.ZodOptional<z.ZodObject<{
|
|
47322
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
47323
|
+
disabledKinds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47324
|
+
}, z.core.$strip>>;
|
|
47325
|
+
modelTuningProfile: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
47326
|
+
meesterGezelId: z.ZodOptional<z.ZodString>;
|
|
47327
|
+
sharedProjectId: z.ZodOptional<z.ZodString>;
|
|
47328
|
+
klerkGezelId: z.ZodOptional<z.ZodString>;
|
|
47329
|
+
boekwachterGezelId: z.ZodOptional<z.ZodString>;
|
|
47330
|
+
keurmeesterGezelId: z.ZodOptional<z.ZodString>;
|
|
47331
|
+
openaiEndpoints: z.ZodOptional<z.ZodObject<{
|
|
47332
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
47333
|
+
servingGezelId: z.ZodOptional<z.ZodString>;
|
|
47334
|
+
supportingBehaviors: z.ZodOptional<z.ZodBoolean>;
|
|
47335
|
+
emulateOllama: z.ZodOptional<z.ZodBoolean>;
|
|
47336
|
+
}, z.core.$strip>>;
|
|
47337
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
47338
|
+
ollamaStreamingIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
47339
|
+
ollamaPreFirstByteIdleSec: z.ZodOptional<z.ZodNumber>;
|
|
47340
|
+
ollamaTurnTimeoutMin: z.ZodOptional<z.ZodNumber>;
|
|
47341
|
+
ollamaNumPredict: z.ZodOptional<z.ZodNumber>;
|
|
47342
|
+
llamaCppNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
47343
|
+
llamaCppContextSizing: z.ZodOptional<z.ZodEnum<{
|
|
47344
|
+
adaptive: "adaptive";
|
|
47345
|
+
"model-max": "model-max";
|
|
47346
|
+
}>>;
|
|
47347
|
+
modelContextOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
47348
|
+
llamaCppSwaFull: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47349
|
+
mlxBaseUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47350
|
+
mlxModelPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47351
|
+
mlxPackageSpec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47352
|
+
mlxKvBits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47353
|
+
mlxSpecDraftModelPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47354
|
+
mlxSpeculativeDecoding: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47355
|
+
mlxSpecBlockSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47356
|
+
externalFolders: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
47357
|
+
documents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47358
|
+
gezels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47359
|
+
projects: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47360
|
+
}, z.core.$strip>>>;
|
|
47361
|
+
llamaCppMlock: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47362
|
+
llamaCppLoadMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47363
|
+
auto: "auto";
|
|
47364
|
+
none: "none";
|
|
47365
|
+
mmap: "mmap";
|
|
47366
|
+
mlock: "mlock";
|
|
47367
|
+
"mmap+mlock": "mmap+mlock";
|
|
47368
|
+
dio: "dio";
|
|
47369
|
+
}>>>;
|
|
47370
|
+
llamaCppLazyMode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47371
|
+
auto: "auto";
|
|
47372
|
+
off: "off";
|
|
47373
|
+
on: "on";
|
|
47374
|
+
}>>>;
|
|
47375
|
+
llamaCppReasoningPreserve: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47376
|
+
llamaCppNCpuFfn: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47124
47377
|
ollamaThink: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47125
47378
|
firstRunInstallError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47126
47379
|
microphoneDeviceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -47161,19 +47414,6 @@ declare const UpdateConfigRequestSchema: z.ZodObject<{
|
|
|
47161
47414
|
"ngram-cache": "ngram-cache";
|
|
47162
47415
|
}>>>;
|
|
47163
47416
|
llamaCppCpuMoe: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47164
|
-
llamaCppSwaFull: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47165
|
-
mlxBaseUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47166
|
-
mlxModelPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47167
|
-
mlxPackageSpec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47168
|
-
mlxKvBits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47169
|
-
mlxSpecDraftModelPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47170
|
-
mlxSpeculativeDecoding: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
47171
|
-
mlxSpecBlockSize: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47172
|
-
externalFolders: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
47173
|
-
documents: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47174
|
-
gezels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47175
|
-
projects: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47176
|
-
}, z.core.$strip>>>;
|
|
47177
47417
|
}, z.core.$strip>;
|
|
47178
47418
|
type UpdateConfigRequest = z.infer<typeof UpdateConfigRequestSchema>;
|
|
47179
47419
|
declare const ListGezelsResponseSchema: z.ZodObject<{
|
|
@@ -47263,14 +47503,29 @@ declare const ListGezelsResponseSchema: z.ZodObject<{
|
|
|
47263
47503
|
skin2: z.ZodString;
|
|
47264
47504
|
hair: z.ZodString;
|
|
47265
47505
|
hairShape: z.ZodEnum<{
|
|
47506
|
+
medium: "medium";
|
|
47266
47507
|
halo: "halo";
|
|
47267
47508
|
short: "short";
|
|
47509
|
+
bob: "bob";
|
|
47268
47510
|
long: "long";
|
|
47511
|
+
"extra-long": "extra-long";
|
|
47269
47512
|
bun: "bun";
|
|
47270
47513
|
braids: "braids";
|
|
47271
47514
|
shaved: "shaved";
|
|
47272
47515
|
bald: "bald";
|
|
47273
47516
|
}>;
|
|
47517
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47518
|
+
straight: "straight";
|
|
47519
|
+
short: "short";
|
|
47520
|
+
"side-swept": "side-swept";
|
|
47521
|
+
curtain: "curtain";
|
|
47522
|
+
}>>>>;
|
|
47523
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
47524
|
+
none: "none";
|
|
47525
|
+
center: "center";
|
|
47526
|
+
left: "left";
|
|
47527
|
+
right: "right";
|
|
47528
|
+
}>>>;
|
|
47274
47529
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47275
47530
|
cap: "cap";
|
|
47276
47531
|
beanie: "beanie";
|
|
@@ -47477,14 +47732,29 @@ declare const GezelResponseSchema: z.ZodObject<{
|
|
|
47477
47732
|
skin2: z.ZodString;
|
|
47478
47733
|
hair: z.ZodString;
|
|
47479
47734
|
hairShape: z.ZodEnum<{
|
|
47735
|
+
medium: "medium";
|
|
47480
47736
|
halo: "halo";
|
|
47481
47737
|
short: "short";
|
|
47738
|
+
bob: "bob";
|
|
47482
47739
|
long: "long";
|
|
47740
|
+
"extra-long": "extra-long";
|
|
47483
47741
|
bun: "bun";
|
|
47484
47742
|
braids: "braids";
|
|
47485
47743
|
shaved: "shaved";
|
|
47486
47744
|
bald: "bald";
|
|
47487
47745
|
}>;
|
|
47746
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47747
|
+
straight: "straight";
|
|
47748
|
+
short: "short";
|
|
47749
|
+
"side-swept": "side-swept";
|
|
47750
|
+
curtain: "curtain";
|
|
47751
|
+
}>>>>;
|
|
47752
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
47753
|
+
none: "none";
|
|
47754
|
+
center: "center";
|
|
47755
|
+
left: "left";
|
|
47756
|
+
right: "right";
|
|
47757
|
+
}>>>;
|
|
47488
47758
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
47489
47759
|
cap: "cap";
|
|
47490
47760
|
beanie: "beanie";
|
|
@@ -47692,6 +47962,20 @@ declare const GezelResponseSchema: z.ZodObject<{
|
|
|
47692
47962
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
47693
47963
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
47694
47964
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
47965
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
47966
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
47967
|
+
auto: "auto";
|
|
47968
|
+
none: "none";
|
|
47969
|
+
mmap: "mmap";
|
|
47970
|
+
mlock: "mlock";
|
|
47971
|
+
"mmap+mlock": "mmap+mlock";
|
|
47972
|
+
dio: "dio";
|
|
47973
|
+
}>>;
|
|
47974
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
47975
|
+
auto: "auto";
|
|
47976
|
+
off: "off";
|
|
47977
|
+
on: "on";
|
|
47978
|
+
}>>;
|
|
47695
47979
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
47696
47980
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
47697
47981
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -48125,6 +48409,20 @@ declare const UpdateGezelSettingsRequestSchema: z.ZodObject<{
|
|
|
48125
48409
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
48126
48410
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
48127
48411
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
48412
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
48413
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
48414
|
+
auto: "auto";
|
|
48415
|
+
none: "none";
|
|
48416
|
+
mmap: "mmap";
|
|
48417
|
+
mlock: "mlock";
|
|
48418
|
+
"mmap+mlock": "mmap+mlock";
|
|
48419
|
+
dio: "dio";
|
|
48420
|
+
}>>;
|
|
48421
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
48422
|
+
auto: "auto";
|
|
48423
|
+
off: "off";
|
|
48424
|
+
on: "on";
|
|
48425
|
+
}>>;
|
|
48128
48426
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
48129
48427
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
48130
48428
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -48320,14 +48618,29 @@ declare const UpdateGezelPoppetjeRequestSchema: z.ZodObject<{
|
|
|
48320
48618
|
skin2: z.ZodString;
|
|
48321
48619
|
hair: z.ZodString;
|
|
48322
48620
|
hairShape: z.ZodEnum<{
|
|
48621
|
+
medium: "medium";
|
|
48323
48622
|
halo: "halo";
|
|
48324
48623
|
short: "short";
|
|
48624
|
+
bob: "bob";
|
|
48325
48625
|
long: "long";
|
|
48626
|
+
"extra-long": "extra-long";
|
|
48326
48627
|
bun: "bun";
|
|
48327
48628
|
braids: "braids";
|
|
48328
48629
|
shaved: "shaved";
|
|
48329
48630
|
bald: "bald";
|
|
48330
48631
|
}>;
|
|
48632
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
48633
|
+
straight: "straight";
|
|
48634
|
+
short: "short";
|
|
48635
|
+
"side-swept": "side-swept";
|
|
48636
|
+
curtain: "curtain";
|
|
48637
|
+
}>>>>;
|
|
48638
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
48639
|
+
none: "none";
|
|
48640
|
+
center: "center";
|
|
48641
|
+
left: "left";
|
|
48642
|
+
right: "right";
|
|
48643
|
+
}>>>;
|
|
48331
48644
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
48332
48645
|
cap: "cap";
|
|
48333
48646
|
beanie: "beanie";
|
|
@@ -48717,6 +49030,19 @@ declare const ChatHistoryResponseSchema: z.ZodObject<{
|
|
|
48717
49030
|
}, z.core.$strip>;
|
|
48718
49031
|
type ChatHistoryResponse = z.infer<typeof ChatHistoryResponseSchema>;
|
|
48719
49032
|
declare const SendChatRequestSchema: z.ZodObject<{
|
|
49033
|
+
fileTurnIntent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
49034
|
+
kind: z.ZodLiteral<"create-file">;
|
|
49035
|
+
path: z.ZodString;
|
|
49036
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
49037
|
+
kind: z.ZodLiteral<"repair-file">;
|
|
49038
|
+
path: z.ZodString;
|
|
49039
|
+
strategy: z.ZodOptional<z.ZodEnum<{
|
|
49040
|
+
rewrite: "rewrite";
|
|
49041
|
+
patch: "patch";
|
|
49042
|
+
}>>;
|
|
49043
|
+
readPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
49044
|
+
mutationPath: z.ZodOptional<z.ZodString>;
|
|
49045
|
+
}, z.core.$strip>], "kind">>;
|
|
48720
49046
|
message: z.ZodString;
|
|
48721
49047
|
projectId: z.ZodOptional<z.ZodString>;
|
|
48722
49048
|
expectedDeliverable: z.ZodOptional<z.ZodObject<{
|
|
@@ -48954,6 +49280,19 @@ type SendChatResponse = z.infer<typeof SendChatResponseSchema>;
|
|
|
48954
49280
|
* sender's inbox. `projectId` defaults to the sender's project.
|
|
48955
49281
|
*/
|
|
48956
49282
|
declare const MessageGezelRequestSchema: z.ZodObject<{
|
|
49283
|
+
fileTurnIntent: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
49284
|
+
kind: z.ZodLiteral<"create-file">;
|
|
49285
|
+
path: z.ZodString;
|
|
49286
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
49287
|
+
kind: z.ZodLiteral<"repair-file">;
|
|
49288
|
+
path: z.ZodString;
|
|
49289
|
+
strategy: z.ZodOptional<z.ZodEnum<{
|
|
49290
|
+
rewrite: "rewrite";
|
|
49291
|
+
patch: "patch";
|
|
49292
|
+
}>>;
|
|
49293
|
+
readPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
49294
|
+
mutationPath: z.ZodOptional<z.ZodString>;
|
|
49295
|
+
}, z.core.$strip>], "kind">>;
|
|
48957
49296
|
fromGezelId: z.ZodString;
|
|
48958
49297
|
fromSessionId: z.ZodOptional<z.ZodString>;
|
|
48959
49298
|
projectId: z.ZodOptional<z.ZodString>;
|
|
@@ -59919,12 +60258,13 @@ declare const ChatModelLlamaCppSourceSchema: z.ZodObject<{
|
|
|
59919
60258
|
type ChatModelLlamaCppSource = z.infer<typeof ChatModelLlamaCppSourceSchema>;
|
|
59920
60259
|
/**
|
|
59921
60260
|
* Per-entry ds4 (DwarfStar) source. ds4 loads supported routed-MoE GGUFs
|
|
59922
|
-
* (including DeepSeek V4 and GLM 5.2
|
|
60261
|
+
* (including DeepSeek V4 and GLM 5.2/5.3), so the shape mirrors
|
|
59923
60262
|
* {@link ChatModelLlamaCppSourceSchema} — HF repo + revision + filename/shards
|
|
59924
60263
|
* + sha256 + residentBytes + quantization — plus two ds4-specific SSD-
|
|
59925
|
-
* streaming hints.
|
|
59926
|
-
*
|
|
59927
|
-
*
|
|
60264
|
+
* streaming hints. Current Gezel registrations use single-file artifacts.
|
|
60265
|
+
* ds4 is NOT a general GGUF loader: use this block only for architectures and
|
|
60266
|
+
* quants the engine explicitly supports. Stock llama.cpp cannot load the
|
|
60267
|
+
* routed ds4-only quants.
|
|
59928
60268
|
*/
|
|
59929
60269
|
declare const ChatModelDs4SourceSchema: z.ZodObject<{
|
|
59930
60270
|
huggingfaceRepo: z.ZodString;
|
|
@@ -59941,6 +60281,11 @@ declare const ChatModelDs4SourceSchema: z.ZodObject<{
|
|
|
59941
60281
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
59942
60282
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
59943
60283
|
quantization: z.ZodOptional<z.ZodString>;
|
|
60284
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
60285
|
+
filename: z.ZodString;
|
|
60286
|
+
sha256: z.ZodString;
|
|
60287
|
+
sizeBytes: z.ZodNumber;
|
|
60288
|
+
}, z.core.$strip>>;
|
|
59944
60289
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
59945
60290
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
59946
60291
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -60132,6 +60477,20 @@ declare const ChatModelIdentitySchema: z.ZodObject<{
|
|
|
60132
60477
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
60133
60478
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
60134
60479
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
60480
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
60481
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
60482
|
+
auto: "auto";
|
|
60483
|
+
none: "none";
|
|
60484
|
+
mmap: "mmap";
|
|
60485
|
+
mlock: "mlock";
|
|
60486
|
+
"mmap+mlock": "mmap+mlock";
|
|
60487
|
+
dio: "dio";
|
|
60488
|
+
}>>;
|
|
60489
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
60490
|
+
auto: "auto";
|
|
60491
|
+
off: "off";
|
|
60492
|
+
on: "on";
|
|
60493
|
+
}>>;
|
|
60135
60494
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
60136
60495
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
60137
60496
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -60314,347 +60673,371 @@ declare const ChatModelVersionManifestSchema: z.ZodObject<{
|
|
|
60314
60673
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
60315
60674
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60316
60675
|
quantization: z.ZodOptional<z.ZodString>;
|
|
60317
|
-
|
|
60318
|
-
|
|
60319
|
-
|
|
60320
|
-
|
|
60321
|
-
|
|
60322
|
-
|
|
60323
|
-
|
|
60324
|
-
|
|
60325
|
-
|
|
60326
|
-
|
|
60327
|
-
|
|
60328
|
-
|
|
60329
|
-
|
|
60330
|
-
|
|
60331
|
-
|
|
60332
|
-
|
|
60333
|
-
|
|
60334
|
-
|
|
60335
|
-
|
|
60336
|
-
*
|
|
60337
|
-
*
|
|
60338
|
-
*
|
|
60339
|
-
*
|
|
60340
|
-
*
|
|
60341
|
-
*
|
|
60342
|
-
*
|
|
60343
|
-
|
|
60344
|
-
|
|
60345
|
-
|
|
60346
|
-
|
|
60347
|
-
|
|
60348
|
-
|
|
60349
|
-
|
|
60350
|
-
|
|
60351
|
-
|
|
60352
|
-
|
|
60353
|
-
|
|
60354
|
-
|
|
60355
|
-
|
|
60356
|
-
|
|
60357
|
-
|
|
60358
|
-
|
|
60359
|
-
|
|
60360
|
-
|
|
60361
|
-
|
|
60362
|
-
|
|
60363
|
-
|
|
60364
|
-
|
|
60365
|
-
|
|
60366
|
-
|
|
60367
|
-
|
|
60368
|
-
|
|
60369
|
-
|
|
60370
|
-
|
|
60371
|
-
|
|
60372
|
-
|
|
60373
|
-
|
|
60374
|
-
|
|
60375
|
-
|
|
60376
|
-
|
|
60377
|
-
|
|
60378
|
-
|
|
60379
|
-
|
|
60380
|
-
|
|
60381
|
-
|
|
60382
|
-
|
|
60383
|
-
|
|
60384
|
-
|
|
60385
|
-
|
|
60386
|
-
|
|
60387
|
-
|
|
60388
|
-
|
|
60389
|
-
|
|
60390
|
-
|
|
60391
|
-
|
|
60392
|
-
|
|
60393
|
-
|
|
60394
|
-
|
|
60395
|
-
|
|
60396
|
-
|
|
60397
|
-
|
|
60398
|
-
|
|
60399
|
-
|
|
60400
|
-
|
|
60401
|
-
|
|
60402
|
-
|
|
60403
|
-
|
|
60404
|
-
|
|
60405
|
-
|
|
60406
|
-
|
|
60407
|
-
|
|
60408
|
-
|
|
60409
|
-
|
|
60410
|
-
|
|
60411
|
-
|
|
60412
|
-
|
|
60413
|
-
|
|
60414
|
-
|
|
60415
|
-
|
|
60416
|
-
|
|
60417
|
-
|
|
60418
|
-
|
|
60419
|
-
|
|
60420
|
-
|
|
60421
|
-
|
|
60422
|
-
|
|
60423
|
-
|
|
60424
|
-
|
|
60425
|
-
|
|
60426
|
-
|
|
60427
|
-
|
|
60428
|
-
|
|
60429
|
-
|
|
60430
|
-
|
|
60431
|
-
|
|
60432
|
-
|
|
60433
|
-
|
|
60434
|
-
|
|
60435
|
-
|
|
60436
|
-
|
|
60437
|
-
|
|
60438
|
-
|
|
60439
|
-
|
|
60440
|
-
|
|
60441
|
-
|
|
60442
|
-
|
|
60443
|
-
|
|
60444
|
-
|
|
60445
|
-
|
|
60446
|
-
|
|
60447
|
-
|
|
60448
|
-
|
|
60449
|
-
|
|
60450
|
-
|
|
60451
|
-
|
|
60452
|
-
|
|
60453
|
-
|
|
60454
|
-
|
|
60455
|
-
|
|
60456
|
-
|
|
60457
|
-
|
|
60458
|
-
|
|
60459
|
-
|
|
60460
|
-
|
|
60461
|
-
|
|
60462
|
-
|
|
60463
|
-
|
|
60464
|
-
|
|
60465
|
-
|
|
60466
|
-
|
|
60467
|
-
}>>;
|
|
60468
|
-
|
|
60469
|
-
|
|
60470
|
-
|
|
60471
|
-
|
|
60472
|
-
|
|
60473
|
-
|
|
60474
|
-
|
|
60475
|
-
|
|
60476
|
-
|
|
60477
|
-
|
|
60478
|
-
|
|
60479
|
-
|
|
60480
|
-
|
|
60481
|
-
|
|
60482
|
-
|
|
60483
|
-
|
|
60484
|
-
|
|
60485
|
-
|
|
60486
|
-
|
|
60487
|
-
|
|
60488
|
-
|
|
60489
|
-
|
|
60490
|
-
|
|
60491
|
-
|
|
60492
|
-
|
|
60493
|
-
|
|
60494
|
-
|
|
60495
|
-
|
|
60496
|
-
|
|
60497
|
-
|
|
60498
|
-
|
|
60499
|
-
|
|
60500
|
-
|
|
60501
|
-
|
|
60502
|
-
|
|
60503
|
-
|
|
60504
|
-
|
|
60505
|
-
|
|
60506
|
-
|
|
60507
|
-
|
|
60508
|
-
|
|
60509
|
-
|
|
60510
|
-
|
|
60511
|
-
|
|
60512
|
-
|
|
60513
|
-
|
|
60514
|
-
|
|
60515
|
-
|
|
60516
|
-
|
|
60517
|
-
|
|
60518
|
-
|
|
60519
|
-
|
|
60520
|
-
|
|
60521
|
-
|
|
60522
|
-
|
|
60523
|
-
|
|
60524
|
-
}, z.core.$strip>>;
|
|
60525
|
-
|
|
60526
|
-
|
|
60527
|
-
|
|
60528
|
-
|
|
60529
|
-
|
|
60530
|
-
|
|
60531
|
-
|
|
60532
|
-
|
|
60533
|
-
|
|
60534
|
-
|
|
60535
|
-
|
|
60536
|
-
|
|
60537
|
-
|
|
60538
|
-
|
|
60539
|
-
|
|
60540
|
-
|
|
60541
|
-
|
|
60542
|
-
|
|
60543
|
-
|
|
60544
|
-
|
|
60545
|
-
|
|
60546
|
-
|
|
60547
|
-
|
|
60548
|
-
|
|
60549
|
-
|
|
60550
|
-
|
|
60551
|
-
|
|
60552
|
-
|
|
60553
|
-
|
|
60554
|
-
|
|
60555
|
-
|
|
60556
|
-
|
|
60557
|
-
|
|
60558
|
-
|
|
60559
|
-
|
|
60560
|
-
|
|
60561
|
-
|
|
60562
|
-
|
|
60563
|
-
|
|
60564
|
-
|
|
60565
|
-
|
|
60566
|
-
|
|
60567
|
-
|
|
60568
|
-
|
|
60569
|
-
|
|
60570
|
-
|
|
60571
|
-
|
|
60572
|
-
|
|
60573
|
-
|
|
60574
|
-
|
|
60575
|
-
|
|
60576
|
-
|
|
60577
|
-
|
|
60578
|
-
|
|
60579
|
-
|
|
60580
|
-
|
|
60581
|
-
|
|
60582
|
-
|
|
60583
|
-
|
|
60584
|
-
|
|
60585
|
-
|
|
60586
|
-
|
|
60587
|
-
|
|
60588
|
-
|
|
60589
|
-
|
|
60590
|
-
|
|
60591
|
-
|
|
60592
|
-
|
|
60593
|
-
|
|
60594
|
-
|
|
60595
|
-
|
|
60596
|
-
|
|
60597
|
-
|
|
60598
|
-
|
|
60599
|
-
|
|
60600
|
-
|
|
60601
|
-
|
|
60602
|
-
|
|
60603
|
-
|
|
60604
|
-
|
|
60605
|
-
|
|
60606
|
-
|
|
60607
|
-
|
|
60676
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
60677
|
+
filename: z.ZodString;
|
|
60678
|
+
sha256: z.ZodString;
|
|
60679
|
+
sizeBytes: z.ZodNumber;
|
|
60680
|
+
}, z.core.$strip>>;
|
|
60681
|
+
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
60682
|
+
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
60683
|
+
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
60684
|
+
draftModel: z.ZodOptional<z.ZodObject<{
|
|
60685
|
+
filename: z.ZodString;
|
|
60686
|
+
sha256: z.ZodString;
|
|
60687
|
+
sizeBytes: z.ZodNumber;
|
|
60688
|
+
}, z.core.$strip>>;
|
|
60689
|
+
}, z.core.$strip>>;
|
|
60690
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
60691
|
+
minGezelVersion: z.ZodOptional<z.ZodString>;
|
|
60692
|
+
}, z.core.$strip>;
|
|
60693
|
+
type ChatModelVersionManifest = z.infer<typeof ChatModelVersionManifestSchema>;
|
|
60694
|
+
/**
|
|
60695
|
+
* Per-model eval-harness hints. Schema-present so manifests can declare
|
|
60696
|
+
* them; production code paths ignore the block entirely. Two
|
|
60697
|
+
* `sniffThresholds` overrides are supported: `inlineJsMinBytes` — a
|
|
60698
|
+
* per-model override for the shared anti-stub JS floor (default 2048)
|
|
60699
|
+
* used by the interactive-game scenarios (`tictactoe`, `tankcombat`);
|
|
60700
|
+
* and `htmlMinBytes` — the parallel per-model override for the shared
|
|
60701
|
+
* total-HTML floor (`MIN_GAME_HTML_BYTES`, default 4096) used by the
|
|
60702
|
+
* canvas-game `html-size-ok` signal (`tankcombat`, `arcade-deluxe`).
|
|
60703
|
+
* The fields exist because some model families (Nemotron-3, GPT-OSS, …)
|
|
60704
|
+
* write idiomatically tight functional code that lands just under the
|
|
60705
|
+
* default thresholds; calibrating per-family is more honest than
|
|
60706
|
+
* pretending one floor fits every model's style.
|
|
60707
|
+
*/
|
|
60708
|
+
declare const EvalHintsSchema: z.ZodObject<{
|
|
60709
|
+
sniffThresholds: z.ZodOptional<z.ZodObject<{
|
|
60710
|
+
inlineJsMinBytes: z.ZodOptional<z.ZodNumber>;
|
|
60711
|
+
htmlMinBytes: z.ZodOptional<z.ZodNumber>;
|
|
60712
|
+
}, z.core.$strip>>;
|
|
60713
|
+
}, z.core.$strip>;
|
|
60714
|
+
type EvalHints = z.infer<typeof EvalHintsSchema>;
|
|
60715
|
+
declare const ChatModelManifestSchema: z.ZodObject<{
|
|
60716
|
+
version: z.ZodString;
|
|
60717
|
+
releasedAt: z.ZodString;
|
|
60718
|
+
parameterSize: z.ZodString;
|
|
60719
|
+
approxSizeBytes: z.ZodNumber;
|
|
60720
|
+
supportsTools: z.ZodBoolean;
|
|
60721
|
+
contextWindow: z.ZodOptional<z.ZodNumber>;
|
|
60722
|
+
kvBytesPerTokenF16: z.ZodOptional<z.ZodNumber>;
|
|
60723
|
+
kvFixedBytesF16: z.ZodOptional<z.ZodNumber>;
|
|
60724
|
+
upstream: z.ZodOptional<z.ZodString>;
|
|
60725
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
60726
|
+
reasoning: "reasoning";
|
|
60727
|
+
general: "general";
|
|
60728
|
+
vision: "vision";
|
|
60729
|
+
coding: "coding";
|
|
60730
|
+
embedding: "embedding";
|
|
60731
|
+
}>>;
|
|
60732
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
60733
|
+
family: z.ZodEnum<{
|
|
60734
|
+
other: "other";
|
|
60735
|
+
gemma: "gemma";
|
|
60736
|
+
qwen: "qwen";
|
|
60737
|
+
"gpt-oss": "gpt-oss";
|
|
60738
|
+
mistral: "mistral";
|
|
60739
|
+
llama: "llama";
|
|
60740
|
+
deepseek: "deepseek";
|
|
60741
|
+
qwq: "qwq";
|
|
60742
|
+
phi: "phi";
|
|
60743
|
+
nemotron: "nemotron";
|
|
60744
|
+
granite: "granite";
|
|
60745
|
+
glm: "glm";
|
|
60746
|
+
muse: "muse";
|
|
60747
|
+
}>;
|
|
60748
|
+
reasoningFormat: z.ZodEnum<{
|
|
60749
|
+
none: "none";
|
|
60750
|
+
think: "think";
|
|
60751
|
+
channel: "channel";
|
|
60752
|
+
inline: "inline";
|
|
60753
|
+
}>;
|
|
60754
|
+
toolCallFormat: z.ZodEnum<{
|
|
60755
|
+
"function-call": "function-call";
|
|
60756
|
+
"qwen-xml": "qwen-xml";
|
|
60757
|
+
hermes: "hermes";
|
|
60758
|
+
"gemma-special-token": "gemma-special-token";
|
|
60759
|
+
"json-envelope": "json-envelope";
|
|
60760
|
+
}>;
|
|
60761
|
+
}, z.core.$strip>>;
|
|
60762
|
+
behaviors: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
60763
|
+
id: z.ZodString;
|
|
60764
|
+
config: z.ZodOptional<z.ZodUnknown>;
|
|
60765
|
+
}, z.core.$strip>]>>>;
|
|
60766
|
+
tuning: z.ZodOptional<z.ZodObject<{
|
|
60767
|
+
sampling: z.ZodOptional<z.ZodObject<{
|
|
60768
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
60769
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
60770
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
60771
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
60772
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60773
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
60774
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60775
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
60776
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60777
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
60778
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
60779
|
+
multiplier: z.ZodNumber;
|
|
60780
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
60781
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
60782
|
+
}, z.core.$strip>>;
|
|
60783
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
60784
|
+
probability: z.ZodNumber;
|
|
60785
|
+
threshold: z.ZodNumber;
|
|
60786
|
+
}, z.core.$strip>>;
|
|
60787
|
+
}, z.core.$strip>>;
|
|
60788
|
+
samplingWhenThinking: z.ZodOptional<z.ZodObject<{
|
|
60789
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
60790
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
60791
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
60792
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
60793
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60794
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
60795
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60796
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
60797
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60798
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
60799
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
60800
|
+
multiplier: z.ZodNumber;
|
|
60801
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
60802
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
60803
|
+
}, z.core.$strip>>;
|
|
60804
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
60805
|
+
probability: z.ZodNumber;
|
|
60806
|
+
threshold: z.ZodNumber;
|
|
60807
|
+
}, z.core.$strip>>;
|
|
60808
|
+
}, z.core.$strip>>;
|
|
60809
|
+
reasoning: z.ZodOptional<z.ZodObject<{
|
|
60810
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
60811
|
+
medium: "medium";
|
|
60812
|
+
low: "low";
|
|
60813
|
+
high: "high";
|
|
60814
|
+
}>>;
|
|
60815
|
+
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
60816
|
+
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
60817
|
+
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
60818
|
+
}, z.core.$strip>>;
|
|
60819
|
+
output: z.ZodOptional<z.ZodObject<{
|
|
60820
|
+
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
60821
|
+
text: "text";
|
|
60822
|
+
json_object: "json_object";
|
|
60823
|
+
}>>;
|
|
60824
|
+
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
60825
|
+
grammar: z.ZodOptional<z.ZodString>;
|
|
60826
|
+
}, z.core.$strip>>;
|
|
60827
|
+
toolChoice: z.ZodOptional<z.ZodEnum<{
|
|
60828
|
+
required: "required";
|
|
60829
|
+
auto: "auto";
|
|
60830
|
+
none: "none";
|
|
60831
|
+
}>>;
|
|
60832
|
+
promptTags: z.ZodOptional<z.ZodObject<{
|
|
60833
|
+
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
60834
|
+
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
60835
|
+
}, z.core.$strip>>;
|
|
60836
|
+
engine: z.ZodOptional<z.ZodObject<{
|
|
60837
|
+
llamaCpp: z.ZodOptional<z.ZodObject<{
|
|
60838
|
+
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
60839
|
+
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
60840
|
+
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
60841
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
60842
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
60843
|
+
auto: "auto";
|
|
60844
|
+
none: "none";
|
|
60845
|
+
mmap: "mmap";
|
|
60846
|
+
mlock: "mlock";
|
|
60847
|
+
"mmap+mlock": "mmap+mlock";
|
|
60848
|
+
dio: "dio";
|
|
60849
|
+
}>>;
|
|
60850
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
60851
|
+
auto: "auto";
|
|
60852
|
+
off: "off";
|
|
60853
|
+
on: "on";
|
|
60854
|
+
}>>;
|
|
60855
|
+
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
60856
|
+
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
60857
|
+
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
60858
|
+
auto: "auto";
|
|
60859
|
+
off: "off";
|
|
60860
|
+
on: "on";
|
|
60861
|
+
}>>;
|
|
60862
|
+
ubatchSize: z.ZodOptional<z.ZodNumber>;
|
|
60863
|
+
contextSize: z.ZodOptional<z.ZodNumber>;
|
|
60864
|
+
chatTemplate: z.ZodOptional<z.ZodString>;
|
|
60865
|
+
threads: z.ZodOptional<z.ZodNumber>;
|
|
60866
|
+
batchSize: z.ZodOptional<z.ZodNumber>;
|
|
60867
|
+
spec: z.ZodOptional<z.ZodObject<{
|
|
60868
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
60869
|
+
none: "none";
|
|
60870
|
+
"draft-mtp": "draft-mtp";
|
|
60871
|
+
"draft-eagle3": "draft-eagle3";
|
|
60872
|
+
"draft-dflash": "draft-dflash";
|
|
60873
|
+
"draft-simple": "draft-simple";
|
|
60874
|
+
"ngram-mod": "ngram-mod";
|
|
60875
|
+
"ngram-simple": "ngram-simple";
|
|
60876
|
+
"ngram-map-k": "ngram-map-k";
|
|
60877
|
+
"ngram-map-k4v": "ngram-map-k4v";
|
|
60878
|
+
"ngram-cache": "ngram-cache";
|
|
60879
|
+
}>>;
|
|
60880
|
+
mtp: z.ZodOptional<z.ZodBoolean>;
|
|
60881
|
+
draftModelId: z.ZodOptional<z.ZodString>;
|
|
60882
|
+
nMax: z.ZodOptional<z.ZodNumber>;
|
|
60883
|
+
}, z.core.$strip>>;
|
|
60884
|
+
}, z.core.$strip>>;
|
|
60885
|
+
}, z.core.$strip>>;
|
|
60886
|
+
profiles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
60887
|
+
sampling: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
60888
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
60889
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
60890
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
60891
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
60892
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60893
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
60894
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60895
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
60896
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60897
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
60898
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
60899
|
+
multiplier: z.ZodNumber;
|
|
60900
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
60901
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
60902
|
+
}, z.core.$strip>>;
|
|
60903
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
60904
|
+
probability: z.ZodNumber;
|
|
60905
|
+
threshold: z.ZodNumber;
|
|
60906
|
+
}, z.core.$strip>>;
|
|
60907
|
+
}, z.core.$strip>>>;
|
|
60908
|
+
samplingWhenThinking: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
60909
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
60910
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
60911
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
60912
|
+
minP: z.ZodOptional<z.ZodNumber>;
|
|
60913
|
+
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60914
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
60915
|
+
repetitionPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60916
|
+
repetitionContext: z.ZodOptional<z.ZodNumber>;
|
|
60917
|
+
frequencyPenalty: z.ZodOptional<z.ZodNumber>;
|
|
60918
|
+
presencePenalty: z.ZodOptional<z.ZodNumber>;
|
|
60919
|
+
dry: z.ZodOptional<z.ZodObject<{
|
|
60920
|
+
multiplier: z.ZodNumber;
|
|
60921
|
+
base: z.ZodOptional<z.ZodNumber>;
|
|
60922
|
+
allowedLength: z.ZodOptional<z.ZodNumber>;
|
|
60923
|
+
}, z.core.$strip>>;
|
|
60924
|
+
xtc: z.ZodOptional<z.ZodObject<{
|
|
60925
|
+
probability: z.ZodNumber;
|
|
60926
|
+
threshold: z.ZodNumber;
|
|
60927
|
+
}, z.core.$strip>>;
|
|
60928
|
+
}, z.core.$strip>>>;
|
|
60929
|
+
reasoning: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
60930
|
+
effort: z.ZodOptional<z.ZodEnum<{
|
|
60931
|
+
medium: "medium";
|
|
60932
|
+
low: "low";
|
|
60933
|
+
high: "high";
|
|
60934
|
+
}>>;
|
|
60935
|
+
thinkingBudget: z.ZodOptional<z.ZodNumber>;
|
|
60936
|
+
enableThinking: z.ZodOptional<z.ZodBoolean>;
|
|
60937
|
+
templateKwargs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
60938
|
+
}, z.core.$strip>>>;
|
|
60939
|
+
output: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
60940
|
+
responseFormat: z.ZodOptional<z.ZodEnum<{
|
|
60941
|
+
text: "text";
|
|
60942
|
+
json_object: "json_object";
|
|
60943
|
+
}>>;
|
|
60944
|
+
jsonSchema: z.ZodOptional<z.ZodUnknown>;
|
|
60945
|
+
grammar: z.ZodOptional<z.ZodString>;
|
|
60946
|
+
}, z.core.$strip>>>;
|
|
60947
|
+
toolChoice: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
60948
|
+
required: "required";
|
|
60949
|
+
auto: "auto";
|
|
60950
|
+
none: "none";
|
|
60951
|
+
}>>>;
|
|
60952
|
+
promptTags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
60953
|
+
enableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
60954
|
+
disableThinkingTag: z.ZodOptional<z.ZodString>;
|
|
60955
|
+
}, z.core.$strip>>>;
|
|
60956
|
+
}, z.core.$strip>>>;
|
|
60957
|
+
}, z.core.$strip>>;
|
|
60958
|
+
evalHints: z.ZodOptional<z.ZodObject<{
|
|
60959
|
+
sniffThresholds: z.ZodOptional<z.ZodObject<{
|
|
60960
|
+
inlineJsMinBytes: z.ZodOptional<z.ZodNumber>;
|
|
60961
|
+
htmlMinBytes: z.ZodOptional<z.ZodNumber>;
|
|
60962
|
+
}, z.core.$strip>>;
|
|
60963
|
+
}, z.core.$strip>>;
|
|
60964
|
+
ollama: z.ZodOptional<z.ZodObject<{
|
|
60965
|
+
tag: z.ZodString;
|
|
60966
|
+
}, z.core.$strip>>;
|
|
60967
|
+
llamaCpp: z.ZodOptional<z.ZodObject<{
|
|
60968
|
+
huggingfaceRepo: z.ZodString;
|
|
60969
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
60970
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
60971
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
60972
|
+
shards: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
60973
|
+
name: z.ZodString;
|
|
60974
|
+
sha256: z.ZodString;
|
|
60975
|
+
sizeBytes: z.ZodNumber;
|
|
60976
|
+
}, z.core.$strip>>>;
|
|
60977
|
+
approxSizeBytes: z.ZodNumber;
|
|
60978
|
+
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
60979
|
+
quantization: z.ZodOptional<z.ZodString>;
|
|
60980
|
+
mmproj: z.ZodOptional<z.ZodObject<{
|
|
60981
|
+
filename: z.ZodString;
|
|
60982
|
+
sha256: z.ZodString;
|
|
60983
|
+
sizeBytes: z.ZodNumber;
|
|
60984
|
+
}, z.core.$strip>>;
|
|
60985
|
+
draftModel: z.ZodOptional<z.ZodObject<{
|
|
60986
|
+
filename: z.ZodString;
|
|
60987
|
+
sha256: z.ZodString;
|
|
60988
|
+
sizeBytes: z.ZodNumber;
|
|
60989
|
+
}, z.core.$strip>>;
|
|
60990
|
+
}, z.core.$strip>>;
|
|
60991
|
+
mlx: z.ZodOptional<z.ZodObject<{
|
|
60992
|
+
huggingfaceRepo: z.ZodString;
|
|
60993
|
+
subdir: z.ZodOptional<z.ZodString>;
|
|
60994
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
60995
|
+
files: z.ZodArray<z.ZodObject<{
|
|
60996
|
+
name: z.ZodString;
|
|
60997
|
+
sha256: z.ZodString;
|
|
60998
|
+
sizeBytes: z.ZodNumber;
|
|
60999
|
+
}, z.core.$strip>>;
|
|
61000
|
+
approxSizeBytes: z.ZodNumber;
|
|
61001
|
+
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
61002
|
+
quantization: z.ZodOptional<z.ZodString>;
|
|
61003
|
+
drafter: z.ZodOptional<z.ZodObject<{
|
|
61004
|
+
huggingfaceRepo: z.ZodString;
|
|
61005
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
61006
|
+
kind: z.ZodDefault<z.ZodEnum<{
|
|
61007
|
+
mtp: "mtp";
|
|
61008
|
+
}>>;
|
|
61009
|
+
files: z.ZodArray<z.ZodObject<{
|
|
61010
|
+
name: z.ZodString;
|
|
61011
|
+
sha256: z.ZodString;
|
|
61012
|
+
sizeBytes: z.ZodNumber;
|
|
61013
|
+
}, z.core.$strip>>;
|
|
61014
|
+
approxSizeBytes: z.ZodNumber;
|
|
61015
|
+
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
61016
|
+
}, z.core.$strip>>;
|
|
61017
|
+
chatTemplate: z.ZodOptional<z.ZodString>;
|
|
61018
|
+
chatTemplateOverride: z.ZodOptional<z.ZodString>;
|
|
61019
|
+
disabledReason: z.ZodOptional<z.ZodString>;
|
|
61020
|
+
}, z.core.$strip>>;
|
|
61021
|
+
ds4: z.ZodOptional<z.ZodObject<{
|
|
61022
|
+
huggingfaceRepo: z.ZodString;
|
|
61023
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
61024
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
61025
|
+
sha256: z.ZodOptional<z.ZodString>;
|
|
61026
|
+
shards: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
61027
|
+
name: z.ZodString;
|
|
61028
|
+
sha256: z.ZodString;
|
|
61029
|
+
sizeBytes: z.ZodNumber;
|
|
61030
|
+
}, z.core.$strip>>>;
|
|
61031
|
+
approxSizeBytes: z.ZodNumber;
|
|
61032
|
+
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
61033
|
+
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
61034
|
+
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
61035
|
+
quantization: z.ZodOptional<z.ZodString>;
|
|
61036
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
60608
61037
|
filename: z.ZodString;
|
|
60609
61038
|
sha256: z.ZodString;
|
|
60610
61039
|
sizeBytes: z.ZodNumber;
|
|
60611
61040
|
}, z.core.$strip>>;
|
|
60612
|
-
}, z.core.$strip>>;
|
|
60613
|
-
mlx: z.ZodOptional<z.ZodObject<{
|
|
60614
|
-
huggingfaceRepo: z.ZodString;
|
|
60615
|
-
subdir: z.ZodOptional<z.ZodString>;
|
|
60616
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
60617
|
-
files: z.ZodArray<z.ZodObject<{
|
|
60618
|
-
name: z.ZodString;
|
|
60619
|
-
sha256: z.ZodString;
|
|
60620
|
-
sizeBytes: z.ZodNumber;
|
|
60621
|
-
}, z.core.$strip>>;
|
|
60622
|
-
approxSizeBytes: z.ZodNumber;
|
|
60623
|
-
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
60624
|
-
quantization: z.ZodOptional<z.ZodString>;
|
|
60625
|
-
drafter: z.ZodOptional<z.ZodObject<{
|
|
60626
|
-
huggingfaceRepo: z.ZodString;
|
|
60627
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
60628
|
-
kind: z.ZodDefault<z.ZodEnum<{
|
|
60629
|
-
mtp: "mtp";
|
|
60630
|
-
}>>;
|
|
60631
|
-
files: z.ZodArray<z.ZodObject<{
|
|
60632
|
-
name: z.ZodString;
|
|
60633
|
-
sha256: z.ZodString;
|
|
60634
|
-
sizeBytes: z.ZodNumber;
|
|
60635
|
-
}, z.core.$strip>>;
|
|
60636
|
-
approxSizeBytes: z.ZodNumber;
|
|
60637
|
-
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
60638
|
-
}, z.core.$strip>>;
|
|
60639
|
-
chatTemplate: z.ZodOptional<z.ZodString>;
|
|
60640
|
-
chatTemplateOverride: z.ZodOptional<z.ZodString>;
|
|
60641
|
-
disabledReason: z.ZodOptional<z.ZodString>;
|
|
60642
|
-
}, z.core.$strip>>;
|
|
60643
|
-
ds4: z.ZodOptional<z.ZodObject<{
|
|
60644
|
-
huggingfaceRepo: z.ZodString;
|
|
60645
|
-
revision: z.ZodOptional<z.ZodString>;
|
|
60646
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
60647
|
-
sha256: z.ZodOptional<z.ZodString>;
|
|
60648
|
-
shards: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
60649
|
-
name: z.ZodString;
|
|
60650
|
-
sha256: z.ZodString;
|
|
60651
|
-
sizeBytes: z.ZodNumber;
|
|
60652
|
-
}, z.core.$strip>>>;
|
|
60653
|
-
approxSizeBytes: z.ZodNumber;
|
|
60654
|
-
residentBytes: z.ZodOptional<z.ZodNumber>;
|
|
60655
|
-
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
60656
|
-
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
60657
|
-
quantization: z.ZodOptional<z.ZodString>;
|
|
60658
61041
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
60659
61042
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
60660
61043
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -61684,6 +62067,20 @@ declare const CatalogItemIdentitySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
61684
62067
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
61685
62068
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
61686
62069
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
62070
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
62071
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
62072
|
+
auto: "auto";
|
|
62073
|
+
none: "none";
|
|
62074
|
+
mmap: "mmap";
|
|
62075
|
+
mlock: "mlock";
|
|
62076
|
+
"mmap+mlock": "mmap+mlock";
|
|
62077
|
+
dio: "dio";
|
|
62078
|
+
}>>;
|
|
62079
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
62080
|
+
auto: "auto";
|
|
62081
|
+
off: "off";
|
|
62082
|
+
on: "on";
|
|
62083
|
+
}>>;
|
|
61687
62084
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
61688
62085
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
61689
62086
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -63971,6 +64368,20 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
63971
64368
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
63972
64369
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
63973
64370
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
64371
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
64372
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
64373
|
+
auto: "auto";
|
|
64374
|
+
none: "none";
|
|
64375
|
+
mmap: "mmap";
|
|
64376
|
+
mlock: "mlock";
|
|
64377
|
+
"mmap+mlock": "mmap+mlock";
|
|
64378
|
+
dio: "dio";
|
|
64379
|
+
}>>;
|
|
64380
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
64381
|
+
auto: "auto";
|
|
64382
|
+
off: "off";
|
|
64383
|
+
on: "on";
|
|
64384
|
+
}>>;
|
|
63974
64385
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
63975
64386
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
63976
64387
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -64152,6 +64563,11 @@ declare const CatalogItemManifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
64152
64563
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
64153
64564
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
64154
64565
|
quantization: z.ZodOptional<z.ZodString>;
|
|
64566
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
64567
|
+
filename: z.ZodString;
|
|
64568
|
+
sha256: z.ZodString;
|
|
64569
|
+
sizeBytes: z.ZodNumber;
|
|
64570
|
+
}, z.core.$strip>>;
|
|
64155
64571
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
64156
64572
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
64157
64573
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -66472,6 +66888,20 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
66472
66888
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
66473
66889
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
66474
66890
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
66891
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
66892
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
66893
|
+
auto: "auto";
|
|
66894
|
+
none: "none";
|
|
66895
|
+
mmap: "mmap";
|
|
66896
|
+
mlock: "mlock";
|
|
66897
|
+
"mmap+mlock": "mmap+mlock";
|
|
66898
|
+
dio: "dio";
|
|
66899
|
+
}>>;
|
|
66900
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
66901
|
+
auto: "auto";
|
|
66902
|
+
off: "off";
|
|
66903
|
+
on: "on";
|
|
66904
|
+
}>>;
|
|
66475
66905
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
66476
66906
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
66477
66907
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -66653,6 +67083,11 @@ declare const CatalogItemSummarySchema: z.ZodObject<{
|
|
|
66653
67083
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
66654
67084
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
66655
67085
|
quantization: z.ZodOptional<z.ZodString>;
|
|
67086
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
67087
|
+
filename: z.ZodString;
|
|
67088
|
+
sha256: z.ZodString;
|
|
67089
|
+
sizeBytes: z.ZodNumber;
|
|
67090
|
+
}, z.core.$strip>>;
|
|
66656
67091
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
66657
67092
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
66658
67093
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -68958,6 +69393,20 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
68958
69393
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
68959
69394
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
68960
69395
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
69396
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
69397
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
69398
|
+
auto: "auto";
|
|
69399
|
+
none: "none";
|
|
69400
|
+
mmap: "mmap";
|
|
69401
|
+
mlock: "mlock";
|
|
69402
|
+
"mmap+mlock": "mmap+mlock";
|
|
69403
|
+
dio: "dio";
|
|
69404
|
+
}>>;
|
|
69405
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
69406
|
+
auto: "auto";
|
|
69407
|
+
off: "off";
|
|
69408
|
+
on: "on";
|
|
69409
|
+
}>>;
|
|
68961
69410
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
68962
69411
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
68963
69412
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -69139,6 +69588,11 @@ declare const ListCatalogItemsResponseSchema: z.ZodObject<{
|
|
|
69139
69588
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
69140
69589
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
69141
69590
|
quantization: z.ZodOptional<z.ZodString>;
|
|
69591
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
69592
|
+
filename: z.ZodString;
|
|
69593
|
+
sha256: z.ZodString;
|
|
69594
|
+
sizeBytes: z.ZodNumber;
|
|
69595
|
+
}, z.core.$strip>>;
|
|
69142
69596
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
69143
69597
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
69144
69598
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -71444,6 +71898,20 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
71444
71898
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
71445
71899
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
71446
71900
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
71901
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
71902
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
71903
|
+
auto: "auto";
|
|
71904
|
+
none: "none";
|
|
71905
|
+
mmap: "mmap";
|
|
71906
|
+
mlock: "mlock";
|
|
71907
|
+
"mmap+mlock": "mmap+mlock";
|
|
71908
|
+
dio: "dio";
|
|
71909
|
+
}>>;
|
|
71910
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
71911
|
+
auto: "auto";
|
|
71912
|
+
off: "off";
|
|
71913
|
+
on: "on";
|
|
71914
|
+
}>>;
|
|
71447
71915
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
71448
71916
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
71449
71917
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -71625,6 +72093,11 @@ declare const CatalogItemDetailSchema: z.ZodObject<{
|
|
|
71625
72093
|
kvBytesPerToken: z.ZodOptional<z.ZodNumber>;
|
|
71626
72094
|
residentCtxTokens: z.ZodOptional<z.ZodNumber>;
|
|
71627
72095
|
quantization: z.ZodOptional<z.ZodString>;
|
|
72096
|
+
visionEncoder: z.ZodOptional<z.ZodObject<{
|
|
72097
|
+
filename: z.ZodString;
|
|
72098
|
+
sha256: z.ZodString;
|
|
72099
|
+
sizeBytes: z.ZodNumber;
|
|
72100
|
+
}, z.core.$strip>>;
|
|
71628
72101
|
cacheExpertsBytes: z.ZodOptional<z.ZodNumber>;
|
|
71629
72102
|
ssdStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
71630
72103
|
maxLaunchCtx: z.ZodOptional<z.ZodNumber>;
|
|
@@ -72793,6 +73266,20 @@ declare const LlamaCppEngineConfigSchema: z.ZodObject<{
|
|
|
72793
73266
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
72794
73267
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
72795
73268
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
73269
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
73270
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
73271
|
+
auto: "auto";
|
|
73272
|
+
none: "none";
|
|
73273
|
+
mmap: "mmap";
|
|
73274
|
+
mlock: "mlock";
|
|
73275
|
+
"mmap+mlock": "mmap+mlock";
|
|
73276
|
+
dio: "dio";
|
|
73277
|
+
}>>;
|
|
73278
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
73279
|
+
auto: "auto";
|
|
73280
|
+
off: "off";
|
|
73281
|
+
on: "on";
|
|
73282
|
+
}>>;
|
|
72796
73283
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
72797
73284
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
72798
73285
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -72833,6 +73320,20 @@ declare const EngineConfigSchema: z.ZodObject<{
|
|
|
72833
73320
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
72834
73321
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
72835
73322
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
73323
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
73324
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
73325
|
+
auto: "auto";
|
|
73326
|
+
none: "none";
|
|
73327
|
+
mmap: "mmap";
|
|
73328
|
+
mlock: "mlock";
|
|
73329
|
+
"mmap+mlock": "mmap+mlock";
|
|
73330
|
+
dio: "dio";
|
|
73331
|
+
}>>;
|
|
73332
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
73333
|
+
auto: "auto";
|
|
73334
|
+
off: "off";
|
|
73335
|
+
on: "on";
|
|
73336
|
+
}>>;
|
|
72836
73337
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
72837
73338
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
72838
73339
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -73032,6 +73533,20 @@ declare const ChatModelTuningSchema: z.ZodObject<{
|
|
|
73032
73533
|
nGpuLayers: z.ZodOptional<z.ZodNumber>;
|
|
73033
73534
|
cpuMoe: z.ZodOptional<z.ZodBoolean>;
|
|
73034
73535
|
nCpuMoe: z.ZodOptional<z.ZodNumber>;
|
|
73536
|
+
nCpuFfn: z.ZodOptional<z.ZodNumber>;
|
|
73537
|
+
loadMode: z.ZodOptional<z.ZodEnum<{
|
|
73538
|
+
auto: "auto";
|
|
73539
|
+
none: "none";
|
|
73540
|
+
mmap: "mmap";
|
|
73541
|
+
mlock: "mlock";
|
|
73542
|
+
"mmap+mlock": "mmap+mlock";
|
|
73543
|
+
dio: "dio";
|
|
73544
|
+
}>>;
|
|
73545
|
+
lazyMode: z.ZodOptional<z.ZodEnum<{
|
|
73546
|
+
auto: "auto";
|
|
73547
|
+
off: "off";
|
|
73548
|
+
on: "on";
|
|
73549
|
+
}>>;
|
|
73035
73550
|
cacheReuse: z.ZodOptional<z.ZodNumber>;
|
|
73036
73551
|
swaFull: z.ZodOptional<z.ZodBoolean>;
|
|
73037
73552
|
flashAttn: z.ZodOptional<z.ZodEnum<{
|
|
@@ -76595,14 +77110,29 @@ declare const HandboekFigureSchema: z.ZodObject<{
|
|
|
76595
77110
|
skin2: z.ZodString;
|
|
76596
77111
|
hair: z.ZodString;
|
|
76597
77112
|
hairShape: z.ZodEnum<{
|
|
77113
|
+
medium: "medium";
|
|
76598
77114
|
halo: "halo";
|
|
76599
77115
|
short: "short";
|
|
77116
|
+
bob: "bob";
|
|
76600
77117
|
long: "long";
|
|
77118
|
+
"extra-long": "extra-long";
|
|
76601
77119
|
bun: "bun";
|
|
76602
77120
|
braids: "braids";
|
|
76603
77121
|
shaved: "shaved";
|
|
76604
77122
|
bald: "bald";
|
|
76605
77123
|
}>;
|
|
77124
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
77125
|
+
straight: "straight";
|
|
77126
|
+
short: "short";
|
|
77127
|
+
"side-swept": "side-swept";
|
|
77128
|
+
curtain: "curtain";
|
|
77129
|
+
}>>>>;
|
|
77130
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
77131
|
+
none: "none";
|
|
77132
|
+
center: "center";
|
|
77133
|
+
left: "left";
|
|
77134
|
+
right: "right";
|
|
77135
|
+
}>>>;
|
|
76606
77136
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
76607
77137
|
cap: "cap";
|
|
76608
77138
|
beanie: "beanie";
|
|
@@ -76743,14 +77273,29 @@ declare const HandboekArticleSchema: z.ZodObject<{
|
|
|
76743
77273
|
skin2: z.ZodString;
|
|
76744
77274
|
hair: z.ZodString;
|
|
76745
77275
|
hairShape: z.ZodEnum<{
|
|
77276
|
+
medium: "medium";
|
|
76746
77277
|
halo: "halo";
|
|
76747
77278
|
short: "short";
|
|
77279
|
+
bob: "bob";
|
|
76748
77280
|
long: "long";
|
|
77281
|
+
"extra-long": "extra-long";
|
|
76749
77282
|
bun: "bun";
|
|
76750
77283
|
braids: "braids";
|
|
76751
77284
|
shaved: "shaved";
|
|
76752
77285
|
bald: "bald";
|
|
76753
77286
|
}>;
|
|
77287
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
77288
|
+
straight: "straight";
|
|
77289
|
+
short: "short";
|
|
77290
|
+
"side-swept": "side-swept";
|
|
77291
|
+
curtain: "curtain";
|
|
77292
|
+
}>>>>;
|
|
77293
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
77294
|
+
none: "none";
|
|
77295
|
+
center: "center";
|
|
77296
|
+
left: "left";
|
|
77297
|
+
right: "right";
|
|
77298
|
+
}>>>;
|
|
76754
77299
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
76755
77300
|
cap: "cap";
|
|
76756
77301
|
beanie: "beanie";
|
|
@@ -76872,14 +77417,29 @@ declare const HandboekHowDoIResponseSchema: z.ZodObject<{
|
|
|
76872
77417
|
skin2: z.ZodString;
|
|
76873
77418
|
hair: z.ZodString;
|
|
76874
77419
|
hairShape: z.ZodEnum<{
|
|
77420
|
+
medium: "medium";
|
|
76875
77421
|
halo: "halo";
|
|
76876
77422
|
short: "short";
|
|
77423
|
+
bob: "bob";
|
|
76877
77424
|
long: "long";
|
|
77425
|
+
"extra-long": "extra-long";
|
|
76878
77426
|
bun: "bun";
|
|
76879
77427
|
braids: "braids";
|
|
76880
77428
|
shaved: "shaved";
|
|
76881
77429
|
bald: "bald";
|
|
76882
77430
|
}>;
|
|
77431
|
+
bangs: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
77432
|
+
straight: "straight";
|
|
77433
|
+
short: "short";
|
|
77434
|
+
"side-swept": "side-swept";
|
|
77435
|
+
curtain: "curtain";
|
|
77436
|
+
}>>>>;
|
|
77437
|
+
hairPart: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
77438
|
+
none: "none";
|
|
77439
|
+
center: "center";
|
|
77440
|
+
left: "left";
|
|
77441
|
+
right: "right";
|
|
77442
|
+
}>>>;
|
|
76883
77443
|
hat: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
76884
77444
|
cap: "cap";
|
|
76885
77445
|
beanie: "beanie";
|
|
@@ -77363,4 +77923,57 @@ declare const RestoreConfirmSchema: z.ZodObject<{
|
|
|
77363
77923
|
}, z.core.$strip>;
|
|
77364
77924
|
type RestoreConfirm = z.infer<typeof RestoreConfirmSchema>;
|
|
77365
77925
|
|
|
77366
|
-
export { AdoptedTraitRecordSchema as $, type AdvanceWhen as A, SearchSessionsResponseSchema as A$, ScriptJsonOutputSchema as A0, ScriptMetaSchema as A1, ScriptNameSchema as A2, ScriptNumberInputSchema as A3, ScriptNumberOutputSchema as A4, ScriptObjectOutputSchema as A5, ScriptOutputFieldSchema as A6, type ScriptOutputPredicate as A7, ScriptOutputPredicateSchema as A8, type ScriptOutputs as A9, type SearchCodeResponse as AA, SearchCodeResponseSchema as AB, type SearchDocsRequest as AC, SearchDocsRequestSchema as AD, type SearchDocsResponse as AE, SearchDocsResponseSchema as AF, type SearchDocumentsRequest as AG, SearchDocumentsRequestSchema as AH, type SearchDocumentsResponse as AI, SearchDocumentsResponseSchema as AJ, type SearchFilesContextLine as AK, SearchFilesContextLineSchema as AL, type SearchFilesMatch as AM, SearchFilesMatchSchema as AN, type SearchFilesRequest as AO, SearchFilesRequestSchema as AP, type SearchFilesResponse as AQ, SearchFilesResponseSchema as AR, type SearchImagesRequest as AS, SearchImagesRequestSchema as AT, type SearchImagesResponse as AU, SearchImagesResponseSchema as AV, type SearchResult as AW, SearchResultSchema as AX, type SearchSessionsRequest as AY, SearchSessionsRequestSchema as AZ, type SearchSessionsResponse as A_, ScriptOutputsSchema as Aa, type ScriptProvenance as Ab, ScriptProvenanceSchema as Ac, type ScriptRef as Ad, ScriptRefInputSchema as Ae, type ScriptRefList as Af, ScriptRefListSchema as Ag, ScriptRefSchema as Ah, type ScriptRun as Ai, type ScriptRunCall as Aj, ScriptRunCallSchema as Ak, ScriptRunSchema as Al, type ScriptRunStatus as Am, ScriptRunStatusSchema as An, type ScriptRunTrigger as Ao, ScriptRunTriggerSchema as Ap, type ScriptScope as Aq, ScriptScopeSchema as Ar, ScriptStringInputSchema as As, ScriptStringOutputSchema as At, type ScriptTemplateId as Au, ScriptTemplateIdSchema as Av, type SdkTypesResponse as Aw, SdkTypesResponseSchema as Ax, type SearchCodeRequest as Ay, SearchCodeRequestSchema as Az, type CatalogItemSummary as B, SharedModelMigrationResultSchema as B$, type SecurityDependency as B0, SecurityDependencySchema as B1, SecurityFindingSchema as B2, type SecurityFindingStatus as B3, SecurityFindingStatusSchema as B4, type SecurityFindingWire as B5, type SecurityOverviewResponse as B6, SecurityOverviewResponseSchema as B7, SecurityPolicySchema as B8, type SecurityScanProvenance as B9, type SessionGpuTask as BA, SessionGpuTaskSchema as BB, type SessionLink as BC, SessionLinkSchema as BD, type SessionParent as BE, SessionParentSchema as BF, type SessionSearchResult as BG, SessionSearchResultSchema as BH, type SessionTelemetry as BI, type SessionTelemetryListResponse as BJ, SessionTelemetryListResponseSchema as BK, SessionTelemetrySchema as BL, type SessionTurnPhase as BM, SessionTurnPhaseSchema as BN, type SessionTurnTelemetry as BO, SessionTurnTelemetrySchema as BP, type SetTaskStatusRequest as BQ, SetTaskStatusRequestSchema as BR, type Settlement as BS, SettlementSchema as BT, type SharedModelMigrationCandidate as BU, SharedModelMigrationCandidateSchema as BV, type SharedModelMigrationCandidatesResponse as BW, SharedModelMigrationCandidatesResponseSchema as BX, type SharedModelMigrationRequest as BY, SharedModelMigrationRequestSchema as BZ, type SharedModelMigrationResult as B_, SecurityScanProvenanceSchema as Ba, type SecurityScanRequest as Bb, SecurityScanRequestSchema as Bc, type SecurityScanResponse as Bd, SecurityScanResponseSchema as Be, SecuritySeveritySchema as Bf, type SecuritySeverityWire as Bg, SecuritySourceSchema as Bh, type SeedPlanState as Bi, SeedPlanStateSchema as Bj, type SendChannelMessageRequest as Bk, SendChannelMessageRequestSchema as Bl, type SendChannelMessageResponse as Bm, SendChannelMessageResponseSchema as Bn, type SendChatRequest as Bo, SendChatRequestSchema as Bp, type SendChatResponse as Bq, SendChatResponseSchema as Br, type SendToSessionRequest as Bs, SendToSessionRequestSchema as Bt, type SendToSessionResponse as Bu, SendToSessionResponseSchema as Bv, type ServiceRole as Bw, ServiceRoleSchema as Bx, type SessionDebugSnapshot as By, SessionDebugSnapshotSchema as Bz, type ChatSession as C, TOOL_CALL_DIFF_MAX_BYTES as C$, type SharedModelMigrationSource as C0, SharedModelMigrationSourceSchema as C1, type SpawnTaskInstancesRequest as C2, SpawnTaskInstancesRequestSchema as C3, type StartCodeReviewRequest as C4, StartCodeReviewRequestSchema as C5, type StartCodeReviewResponse as C6, StartCodeReviewResponseSchema as C7, StepDeliverableSchema as C8, StepGateSchema as C9, StructuredOutputSchema as CA, type SuggestCraftbooksResponse as CB, SuggestCraftbooksResponseSchema as CC, type SuggestedCraftbook as CD, SuggestedCraftbookSchema as CE, type SuggestedWorkItem as CF, SuggestedWorkItemSchema as CG, type SuggestedWorkResponse as CH, SuggestedWorkResponseSchema as CI, type SuggestedWorkSource as CJ, SuggestedWorkSourceSchema as CK, type SuggestedWorkState as CL, SuggestedWorkStateSchema as CM, type SvgLayer as CN, SvgLayerSchema as CO, type SymbolContext as CP, SymbolContextSchema as CQ, type SystemBootstrapStatus as CR, SystemBootstrapStatusSchema as CS, SystemDiagnosticsSchema as CT, type SystemHomeInfo as CU, SystemHomeInfoSchema as CV, type SystemToolsetInstallEvent as CW, SystemToolsetInstallEventSchema as CX, type SystemToolsetInstallPhase as CY, type SystemToolsetInstallSnapshot as CZ, SystemToolsetInstallSnapshotSchema as C_, type StepGateUnion as Ca, StepGateUnionSchema as Cb, type StepPatch as Cc, type StepPosition as Cd, StepPositionSchema as Ce, type StepSniff as Cf, StepSniffSchema as Cg, type StorageCategory as Ch, type StorageCategoryId as Ci, StorageCategoryIdSchema as Cj, StorageCategorySchema as Ck, type StorageClass as Cl, StorageClassSchema as Cm, type StorageItem as Cn, StorageItemSchema as Co, type StorageJob as Cp, type StorageJobKind as Cq, StorageJobKindSchema as Cr, type StorageJobPhase as Cs, StorageJobPhaseSchema as Ct, StorageJobSchema as Cu, type StorageJobStatus as Cv, StorageJobStatusSchema as Cw, type StorageSummary as Cx, StorageSummarySchema as Cy, type StructuredOutput as Cz, DeliverableKindSchema as D, TimelineMessageSchema as D$, type TaskAssignee as D0, TaskAssigneeSchema as D1, type TaskCraftbook as D2, TaskCraftbookSchema as D3, type TaskCraftbookSource as D4, TaskCraftbookSourceSchema as D5, type TaskCraftbookStep as D6, TaskCraftbookStepSchema as D7, type TaskCron as D8, type TaskCronOverlap as D9, type TerminalEventEnvelope as DA, TerminalEventEnvelopeSchema as DB, type TerminalFileReference as DC, TerminalFileReferenceSchema as DD, type TerminalInputRequestedEvent as DE, TerminalInputRequestedEventSchema as DF, type TerminalMessage as DG, type TerminalMessageEvent as DH, TerminalMessageEventSchema as DI, TerminalMessageSchema as DJ, type TerminalOpenFileEvent as DK, TerminalOpenFileEventSchema as DL, type TerminalOutputChunkEvent as DM, TerminalOutputChunkEventSchema as DN, type TerminalRunStartedEvent as DO, TerminalRunStartedEventSchema as DP, type TerminalThread as DQ, TerminalThreadSchema as DR, type TerminalThreadSummary as DS, TerminalThreadSummarySchema as DT, type TerminalTimelineEntry as DU, TerminalTimelineEntrySchema as DV, type TerminalWorkingDirChangedEvent as DW, TerminalWorkingDirChangedEventSchema as DX, type TextLayer as DY, TextLayerSchema as DZ, type TimelineMessage as D_, TaskCronOverlapSchema as Da, TaskCronSchema as Db, type TaskFanout as Dc, TaskFanoutSchema as Dd, type TaskNightShift as De, TaskNightShiftSchema as Df, type TaskNote as Dg, type TaskNoteAuthor as Dh, TaskNoteAuthorSchema as Di, TaskNoteSchema as Dj, type TaskPausedIntent as Dk, TaskPausedIntentSchema as Dl, type TaskPausedReason as Dm, TaskPausedReasonSchema as Dn, TaskRefSchema as Do, type TaskResponse as Dp, TaskResponseSchema as Dq, TaskSchema as Dr, type TaskStatus as Ds, TaskStatusSchema as Dt, type TaskVariation as Du, TaskVariationSchema as Dv, type TaskWaitReason as Dw, TaskWaitReasonSchema as Dx, type TaskWaitState as Dy, TaskWaitStateSchema as Dz, ACTIVE_DIFFPACK_STATUSES as E, UpdateGezelAboutRequestSchema as E$, type ToolCallFormat as E0, ToolCallFormatSchema as E1, type ToolPermissionIntent as E2, ToolPermissionIntentSchema as E3, type ToolsetCategory as E4, ToolsetCategorySchema as E5, type ToolsetConfig as E6, type ToolsetConfigField as E7, ToolsetConfigFieldSchema as E8, ToolsetConfigSchema as E9, TrustedKnowledgeCoordinateSchema as EA, type TuningAction as EB, TuningActionSchema as EC, type TuningProfileId as ED, TuningProfileIdSchema as EE, type TuningProposal as EF, TuningProposalSchema as EG, UNIFIED_SEARCH_RESULT_KINDS as EH, type UnifiedSearchRequest as EI, UnifiedSearchRequestSchema as EJ, type UnifiedSearchResponse as EK, UnifiedSearchResponseSchema as EL, type UnifiedSearchResult as EM, type UnifiedSearchResultKind as EN, UnifiedSearchResultKindSchema as EO, UnifiedSearchResultSchema as EP, type UpdateAiAppRequest as EQ, UpdateAiAppRequestSchema as ER, type UpdateBoekwachterIssueRequest as ES, UpdateBoekwachterIssueRequestSchema as ET, type UpdateBoekwachterIssueResponse as EU, UpdateBoekwachterIssueResponseSchema as EV, type UpdateConfigRequest as EW, UpdateConfigRequestSchema as EX, type UpdateCraftbookRequest as EY, UpdateCraftbookRequestSchema as EZ, type UpdateGezelAboutRequest as E_, type ToolsetIdentity as Ea, ToolsetIdentitySchema as Eb, type ToolsetInstallApprovalIntent as Ec, ToolsetInstallApprovalIntentSchema as Ed, type ToolsetManifest as Ee, ToolsetManifestSchema as Ef, type ToolsetPlatform as Eg, ToolsetPlatformSchema as Eh, ToolsetRuntimeSchema as Ei, type ToolsetVersionManifest as Ej, ToolsetVersionManifestSchema as Ek, type ToolsetsScope as El, ToolsetsScopeSchema as Em, type TraceTaintRequest as En, TraceTaintRequestSchema as Eo, type TraceTaintResponse as Ep, TraceTaintResponseSchema as Eq, type TraitProposal as Er, TraitProposalSchema as Es, type TransformStreamEvent as Et, TransformStreamEventSchema as Eu, type TransformTextMode as Ev, TransformTextModeSchema as Ew, type TransformTextRequest as Ex, TransformTextRequestSchema as Ey, type TrustedKnowledgeCoordinate as Ez, type FileContextResponse as F, VideoModelVersionManifestSchema as F$, type UpdateGezelFixedFunctionDefaultsRequest as F0, UpdateGezelFixedFunctionDefaultsRequestSchema as F1, type UpdateGezelIconRequest as F2, UpdateGezelIconRequestSchema as F3, type UpdateGezelMarkdownRequest as F4, UpdateGezelMarkdownRequestSchema as F5, type UpdateGezelPoppetjeRequest as F6, UpdateGezelPoppetjeRequestSchema as F7, type UpdateGezelSettingsRequest as F8, UpdateGezelSettingsRequestSchema as F9, type VideoAccelerator as FA, VideoAcceleratorSchema as FB, type VideoEngineStatusResponse as FC, VideoEngineStatusResponseSchema as FD, type VideoGenerationApprovalIntent as FE, VideoGenerationApprovalIntentSchema as FF, type VideoGenerationMeta as FG, VideoGenerationMetaSchema as FH, type VideoGenerationRequest as FI, VideoGenerationRequestSchema as FJ, type VideoGenerationResponse as FK, VideoGenerationResponseSchema as FL, type VideoInputSource as FM, VideoInputSourceSchema as FN, type VideoModelFamily as FO, VideoModelFamilySchema as FP, type VideoModelIdentity as FQ, VideoModelIdentitySchema as FR, type VideoModelLoad as FS, VideoModelLoadSchema as FT, type VideoModelManifest as FU, VideoModelManifestSchema as FV, type VideoModelPullEvent as FW, VideoModelPullEventSchema as FX, type VideoModelSource as FY, VideoModelSourceSchema as FZ, type VideoModelVersionManifest as F_, type UpdateKnowledgeCatalogRequest as Fa, UpdateKnowledgeCatalogRequestSchema as Fb, type UpdateProjectRequest as Fc, UpdateProjectRequestSchema as Fd, type UpdateQueuedMessageRequest as Fe, UpdateQueuedMessageRequestSchema as Ff, type UpdateQueuedMessageResponse as Fg, UpdateQueuedMessageResponseSchema as Fh, type UpdateTaskCraftbookRequest as Fi, UpdateTaskCraftbookRequestSchema as Fj, type UpdateTaskNoteRequest as Fk, UpdateTaskNoteRequestSchema as Fl, type UpdateTaskNoteResponse as Fm, UpdateTaskNoteResponseSchema as Fn, type UpdateTaskRequest as Fo, UpdateTaskRequestSchema as Fp, type UpdateTaskStepRequest as Fq, UpdateTaskStepRequestSchema as Fr, type UpdateTaskStepResponse as Fs, UpdateTaskStepResponseSchema as Ft, VILLAGE_FILE_ABOUT as Fu, VILLAGE_FILE_SCHEMA_VERSION as Fv, type VSCodeSetupProfileOption as Fw, VSCodeSetupProfileOptionSchema as Fx, type VSCodeSetupStatusResponse as Fy, VSCodeSetupStatusResponseSchema as Fz, type GezelConfig as G, WritePromptDraftContentResponseSchema as G$, VillageAnchorSchema as G0, type VillageDomainState as G1, VillageDomainStateSchema as G2, type VillageDowntown as G3, VillageDowntownSchema as G4, type VillageFile as G5, VillageFileSchema as G6, type VillageJournalNode as G7, VillageJournalNodeSchema as G8, VillageOverrideSchema as G9, type WorkspaceEditResponse as GA, WorkspaceEditResponseSchema as GB, type WorkspaceIndexFile as GC, WorkspaceIndexFileSchema as GD, type WorkspaceIndexFilesDetailResponse as GE, WorkspaceIndexFilesDetailResponseSchema as GF, type WorkspaceIndexMeta as GG, WorkspaceIndexMetaSchema as GH, type WorkspaceIndexStatus as GI, WorkspaceIndexStatusSchema as GJ, type WorkspaceInstructionIndex as GK, WorkspaceInstructionIndexSchema as GL, type WorkspaceReadFileError as GM, WorkspaceReadFileErrorSchema as GN, type WorkspaceReadFileRequest as GO, WorkspaceReadFileRequestSchema as GP, type WorkspaceReadFileResult as GQ, WorkspaceReadFileResultSchema as GR, type WorkspaceReadFileSuccess as GS, WorkspaceReadFileSuccessSchema as GT, type WorkspaceSkillIndex as GU, WorkspaceSkillIndexSchema as GV, type WriteDocumentRequest as GW, WriteDocumentRequestSchema as GX, type WritePromptDraftContentRequest as GY, WritePromptDraftContentRequestSchema as GZ, type WritePromptDraftContentResponse as G_, WORKSPACE_READ_DEADLINE_MS as Ga, WORKSPACE_READ_MAX_BATCH_LINES as Gb, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as Gc, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as Gd, WORKSPACE_READ_MAX_FILES as Ge, WORKSPACE_READ_MAX_RANGE_LINES as Gf, WORKSPACE_READ_MAX_RESULT_BYTES as Gg, WORKSPACE_READ_MAX_SCAN_BYTES as Gh, type WebSearchRequest as Gi, WebSearchRequestSchema as Gj, type WebSearchResponse as Gk, WebSearchResponseSchema as Gl, type WebhookChannelConfig as Gm, WebhookChannelConfigSchema as Gn, type WikipediaReadRequest as Go, WikipediaReadRequestSchema as Gp, type WikipediaReadResponse as Gq, WikipediaReadResponseSchema as Gr, type WikipediaSearchRequest as Gs, WikipediaSearchRequestSchema as Gt, type WipeFaceDataResponse as Gu, WipeFaceDataResponseSchema as Gv, type WorkspaceCommandIndex as Gw, WorkspaceCommandIndexSchema as Gx, type WorkspaceCommandShapes as Gy, WorkspaceCommandShapesSchema as Gz, type HistoryEvent as H, type XtcSamplerConfig as H0, XtcSamplerSchema as H1, applyStepPatch as H2, assertCraftbookGraph as H3, compareSemver as H4, craftbookRequirementsMet as H5, credentialCapabilityName as H6, formatDiffpackRef as H7, formatNpmRegistrySpec as H8, formatReviewProvenance as H9, requiredOutputMediaForGate as HA, resolveProfileChain as HB, resolveProjectTypeId as HC, resolveSteps as HD, slugifyStepId as HE, spawnsChildren as HF, stepInsertionIndex as HG, taskRef as HH, tierAtLeast as HI, tierRank as HJ, uniqueStepId as HK, unmetConnectors as HL, unmetCraftbookRequirements as HM, unmetToolsets as HN, validateCraftbookFanout as HO, validateCraftbookGraph as HP, validateCraftbookScriptRefs as HQ, validateScriptInput as HR, xpForLevel as HS, gateEdgeTargets as Ha, isActiveDiffpackStatus as Hb, isCredentialCapability as Hc, isDraftTask as Hd, isKnownProfileId as He, isLegacyGateSpec as Hf, isNightShiftTask as Hg, isPendingNightShiftTask as Hh, isScheduleHost as Hi, isSemver as Hj, isValidNpmPackageName as Hk, isValidNpmRegistryVersion as Hl, levelForXp as Hm, modelFitnessKey as Hn, normalizeCodexPermissionMode as Ho, normalizeScriptRefs as Hp, normalizeStepGate as Hq, parseCraftbookTestSpec as Hr, parseRunRecording as Hs, parseTaskRef as Ht, profileKind as Hu, projectAllowsAmbientWork as Hv, projectAllowsNightlyFixes as Hw, projectAllowsWorkspaceTables as Hx, removeStepAndCleanEdges as Hy, reorderStepsArray as Hz, AMBIENT_DASHBOARD_MAX_DIMENSION as I, AMBIENT_DASHBOARD_MAX_PIXELS as J, AMBIENT_DASHBOARD_MIN_DIMENSION as K, AUDIO_TRANSCRIBE_PROMPT_MAX_CHARS as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type AcceptGrowthProposalRequest as Q, type RunRecordingActor as R, type ScriptInputField as S, type ToolsetRuntime as T, AcceptGrowthProposalRequestSchema as U, type VillageAnchor as V, type ActiveImagePull as W, ActiveImagePullSchema as X, type ActiveVideoPull as Y, ActiveVideoPullSchema as Z, type AdoptedTraitRecord as _, type RunRecordingTrial as a, type AskQuestionRequest as a$, AdvanceWhenSchema as a0, type AiAppAppliedProject as a1, AiAppAppliedProjectSchema as a2, type AiAppDetail as a3, AiAppDetailSchema as a4, type AiAppStatus as a5, AiAppStatusSchema as a6, type AmbientDashboardDisplayTarget as a7, AmbientDashboardDisplayTargetSchema as a8, type AmbientDashboardResolution as a9, AppendTaskNoteRequestSchema as aA, type AppendTaskNoteResponse as aB, AppendTaskNoteResponseSchema as aC, type AppliedProjectType as aD, AppliedProjectTypeSchema as aE, type AppliedSeedRecord as aF, AppliedSeedRecordSchema as aG, type ApplyDiffpackRequest as aH, ApplyDiffpackRequestSchema as aI, type ApplyDiffpackResponse as aJ, ApplyDiffpackResponseSchema as aK, type ApplyPatchToProjectWorkspaceFileRequest as aL, ApplyPatchToProjectWorkspaceFileRequestSchema as aM, type ApplyProjectTypeRequest as aN, ApplyProjectTypeRequestSchema as aO, type ArchiveEntry as aP, ArchiveEntrySchema as aQ, type ArchiveExtractRequest as aR, ArchiveExtractRequestSchema as aS, type ArchiveExtractResponse as aT, ArchiveExtractResponseSchema as aU, type ArchiveListRequest as aV, ArchiveListRequestSchema as aW, type ArchiveListResponse as aX, ArchiveListResponseSchema as aY, type ArgSpec as aZ, ArgSpecSchema as a_, AmbientDashboardResolutionSchema as aa, type AmbientDashboardState as ab, AmbientDashboardStateSchema as ac, type AmbientDashboardStatusResponse as ad, AmbientDashboardStatusResponseSchema as ae, type AmbientDashboardStyle as af, AmbientDashboardStyleSchema as ag, type AmbientDashboardTheme as ah, AmbientDashboardThemeSchema as ai, type AmbientDashboardThemeSummary as aj, AmbientDashboardThemeSummarySchema as ak, type AnswerQuestionRequest as al, AnswerQuestionRequestSchema as am, type AppServeChatSendRequest as an, AppServeChatSendRequestSchema as ao, type AppServeRotateKeyRequest as ap, AppServeRotateKeyRequestSchema as aq, type AppServeSiteInfo as ar, AppServeSiteInfoSchema as as, type AppServeSiteStatus as at, AppServeSiteStatusSchema as au, type AppServeStartRequest as av, AppServeStartRequestSchema as aw, type AppServeStartResponse as ax, AppServeStartResponseSchema as ay, type AppendTaskNoteRequest as az, type RunRecordingProvenance as b, CRAFTBOOK_TEST_FILENAME as b$, AskQuestionRequestSchema as b0, type AskQuestionResponse as b1, AskQuestionResponseSchema as b2, type AudioCatalogModel as b3, AudioCatalogModelSchema as b4, type AudioEngineHealth as b5, AudioEngineHealthSchema as b6, type AudioEngineStatusResponse as b7, AudioEngineStatusResponseSchema as b8, type AudioModelPullEvent as b9, BackupManifestSchema as bA, type BackupPlan as bB, type BackupPlanItem as bC, BackupPlanItemSchema as bD, BackupPlanSchema as bE, type BackupRequest as bF, BackupRequestSchema as bG, type BehaviorEntry as bH, BehaviorEntrySchema as bI, type BehaviorId as bJ, BehaviorIdSchema as bK, type BinaryDocumentCheck as bL, BinaryDocumentCheckSchema as bM, type BoekwachterIssue as bN, type BoekwachterIssueDismissalReason as bO, BoekwachterIssueDismissalReasonSchema as bP, BoekwachterIssueSchema as bQ, type BoekwachterIssueStatus as bR, BoekwachterIssueStatusSchema as bS, CANONICAL_PROFILES as bT, CRAFTBOOK_RECORDING_DIRNAME as bU, CRAFTBOOK_RECORDING_FILENAME as bV, CRAFTBOOK_RECORDING_POSTER as bW, CRAFTBOOK_ROLE_META as bX, CRAFTBOOK_SCRIPTS_MAX_COUNT as bY, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as bZ, CRAFTBOOK_SCRIPT_MAX_BYTES as b_, AudioModelPullEventSchema as ba, type AudioSynthesizeChunk as bb, AudioSynthesizeChunkSchema as bc, type AudioSynthesizeEvent as bd, AudioSynthesizeEventSchema as be, type AudioSynthesizeMeta as bf, AudioSynthesizeMetaSchema as bg, type AudioSynthesizeProgress as bh, AudioSynthesizeProgressSchema as bi, type AudioSynthesizeRequest as bj, AudioSynthesizeRequestSchema as bk, type AudioSynthesizeResponse as bl, AudioSynthesizeResponseSchema as bm, type AudioTranscribeRequest as bn, AudioTranscribeRequestSchema as bo, type AudioTranscribeResponse as bp, AudioTranscribeResponseSchema as bq, type AudioTranscribeSegment as br, AudioTranscribeSegmentSchema as bs, type AudioVoice as bt, AudioVoiceSchema as bu, BACKUP_MANIFEST_KIND as bv, BACKUP_SCHEMA_VERSION as bw, type BackupItemKind as bx, BackupItemKindSchema as by, type BackupManifest as bz, type RunRecording as c, type CodeSymbol as c$, CRAFTBOOK_TEST_SCHEMA_VERSION as c0, type CancelCodeReviewResponse as c1, CancelCodeReviewResponseSchema as c2, type CatalogItemDetail as c3, CatalogItemDetailSchema as c4, type CatalogItemIdentity as c5, CatalogItemIdentitySchema as c6, type CatalogItemManifest as c7, CatalogItemManifestSchema as c8, CatalogItemSummarySchema as c9, type ChatModelTuningBase as cA, ChatModelTuningBaseSchema as cB, ChatModelTuningSchema as cC, type ChatModelVersionManifest as cD, ChatModelVersionManifestSchema as cE, ChatSessionSchema as cF, type ChatSessionSummary as cG, ChatSessionSummarySchema as cH, ClaudePermissionModeSchema as cI, type ClaudeUserQuestionIntent as cJ, ClaudeUserQuestionIntentSchema as cK, type ClaudeUserQuestionOption as cL, ClaudeUserQuestionOptionSchema as cM, type CleanupRequest as cN, CleanupRequestSchema as cO, type CodeReview as cP, type CodeReviewKind as cQ, CodeReviewKindSchema as cR, type CodeReviewManifest as cS, CodeReviewManifestSchema as cT, type CodeReviewRecord as cU, CodeReviewRecordSchema as cV, type CodeReviewResponse as cW, CodeReviewResponseSchema as cX, CodeReviewSchema as cY, type CodeReviewStatus as cZ, CodeReviewStatusSchema as c_, type CatalogItemVersionInfo as ca, CatalogItemVersionInfoSchema as cb, type CatalogKind as cc, CatalogKindSchema as cd, type ChannelName as ce, ChannelNameSchema as cf, type ChannelStatus as cg, ChannelStatusSchema as ch, type ChannelsConfig as ci, ChannelsConfigSchema as cj, type ChatHistoryResponse as ck, ChatHistoryResponseSchema as cl, type ChatModelCategory as cm, ChatModelCategorySchema as cn, type ChatModelDs4Source as co, ChatModelDs4SourceSchema as cp, type ChatModelIdentity as cq, ChatModelIdentitySchema as cr, type ChatModelLlamaCppSource as cs, ChatModelLlamaCppSourceSchema as ct, ChatModelManifestSchema as cu, type ChatModelMlxSource as cv, ChatModelMlxSourceSchema as cw, type ChatModelOllamaSource as cx, ChatModelOllamaSourceSchema as cy, type ChatModelTuning as cz, type Rect as d, type CraftbookRequirementContext as d$, CodeSymbolSchema as d0, type CodexPermissionModeCompat as d1, CodexPermissionModeCompatSchema as d2, CodexPermissionModeSchema as d3, type CodexSetupModelOption as d4, CodexSetupModelOptionSchema as d5, type CodexSetupState as d6, CodexSetupStateSchema as d7, type CodexSetupStatusResponse as d8, CodexSetupStatusResponseSchema as d9, type ConnectorTypeManifest as dA, ConnectorTypeManifestSchema as dB, type ConnectorTypeVersionManifest as dC, ConnectorTypeVersionManifestSchema as dD, type CopilotAvailability as dE, CopilotAvailabilitySchema as dF, type CopilotLoginEvent as dG, CopilotLoginEventSchema as dH, type CopyArtifactToWorkspaceRequest as dI, CopyArtifactToWorkspaceRequestSchema as dJ, type CopyArtifactToWorkspaceResponse as dK, CopyArtifactToWorkspaceResponseSchema as dL, type CosmeticProposal as dM, CosmeticProposalSchema as dN, type CraftbookBasedOn as dO, CraftbookBasedOnSchema as dP, type CraftbookBranch as dQ, CraftbookBranchSchema as dR, type CraftbookCommandNeed as dS, CraftbookCommandNeedSchema as dT, type CraftbookConnectorNeed as dU, CraftbookConnectorNeedSchema as dV, type CraftbookRecommendation as dW, CraftbookRecommendationSchema as dX, type CraftbookRecording as dY, CraftbookRecordingSchema as dZ, type CraftbookRequirement as d_, type CommandApprovalInputFile as da, CommandApprovalInputFileSchema as db, type CommandApprovalIntent as dc, CommandApprovalIntentSchema as dd, type CommandApprovalScope as de, CommandApprovalScopeSchema as df, type CommandShape as dg, CommandShapeSchema as dh, CompassRegionSchema as di, type CompleteStepGateInfo as dj, CompleteStepGateInfoSchema as dk, type CompleteStepRequest as dl, CompleteStepRequestSchema as dm, type CompleteStepResponse as dn, CompleteStepResponseSchema as dp, type ConfigureCodexRequest as dq, ConfigureCodexRequestSchema as dr, type ConfigureOpenCodeRequest as ds, ConfigureOpenCodeRequestSchema as dt, type ConfigurePiRequest as du, ConfigurePiRequestSchema as dv, type ConfigureVSCodeRequest as dw, ConfigureVSCodeRequestSchema as dx, type ConnectorTypeIdentity as dy, ConnectorTypeIdentitySchema as dz, type VillageOverride as e, type CreatePreviewCapabilityResponse as e$, CraftbookRequirementSchema as e0, type CraftbookResponse as e1, CraftbookResponseSchema as e2, type CraftbookRole as e3, CraftbookRoleSchema as e4, type CraftbookRunModes as e5, CraftbookRunModesSchema as e6, CraftbookSchema as e7, type CraftbookScripts as e8, CraftbookScriptsSchema as e9, CraftbookTestFixtureFileSchema as eA, type CraftbookTestHistoryExpectation as eB, CraftbookTestHistoryExpectationSchema as eC, type CraftbookTestMockExpectation as eD, CraftbookTestMockExpectationSchema as eE, type CraftbookTestRubric as eF, CraftbookTestRubricSchema as eG, type CraftbookTestSetup as eH, CraftbookTestSetupSchema as eI, type CraftbookTestSpec as eJ, CraftbookTestSpecSchema as eK, type CraftbookTestSuccess as eL, CraftbookTestSuccessSchema as eM, type CraftbookTestWorker as eN, CraftbookTestWorkerSchema as eO, type CraftbookToolsetNeed as eP, CraftbookToolsetNeedSchema as eQ, type CreateChatSessionRequest as eR, CreateChatSessionRequestSchema as eS, type CreateCraftbookRequest as eT, CreateCraftbookRequestSchema as eU, type CreateDocumentFolderRequest as eV, CreateDocumentFolderRequestSchema as eW, type CreateGezelRequest as eX, CreateGezelRequestSchema as eY, type CreatePreviewCapabilityRequest as eZ, CreatePreviewCapabilityRequestSchema as e_, type CraftbookSpawn as ea, CraftbookSpawnSchema as eb, type CraftbookStepInput as ec, CraftbookStepInputSchema as ed, type CraftbookStepOutputMedium as ee, CraftbookStepOutputMediumSchema as ef, CraftbookStepSchema as eg, type CraftbookStepToolPolicy as eh, CraftbookStepToolPolicySchema as ei, type CraftbookStepWritableOutputMedium as ej, CraftbookStepWritableOutputMediumSchema as ek, type CraftbookSuggestion as el, CraftbookSuggestionSchema as em, type CraftbookSummary as en, CraftbookSummarySchema as eo, type CraftbookTemplateIdentity as ep, CraftbookTemplateIdentitySchema as eq, type CraftbookTemplateManifest as er, CraftbookTemplateManifestSchema as es, type CraftbookTemplateVersionManifest as et, CraftbookTemplateVersionManifestSchema as eu, type CraftbookTestCheck as ev, CraftbookTestCheckSchema as ew, type CraftbookTestDeliverable as ex, CraftbookTestDeliverableSchema as ey, type CraftbookTestFixtureFile as ez, type MapStreet as f, DiffpackStatusSchema as f$, CreatePreviewCapabilityResponseSchema as f0, type CreateProjectRequest as f1, CreateProjectRequestSchema as f2, type CreatePromptDraftRequest as f3, CreatePromptDraftRequestSchema as f4, type CreateScriptRequest as f5, CreateScriptRequestSchema as f6, type CreateScriptResponse as f7, CreateScriptResponseSchema as f8, type CreateTaskRequest as f9, DescribeTableRequestSchema as fA, type DescribeTableResponse as fB, DescribeTableResponseSchema as fC, type DeviceSafetyPolicyConfig as fD, DeviceSafetyPolicySchema as fE, type DiffFilesRequest as fF, DiffFilesRequestSchema as fG, type DiffFilesResponse as fH, DiffFilesResponseSchema as fI, type Diffpack as fJ, type DiffpackFile as fK, type DiffpackFileChange as fL, DiffpackFileChangeSchema as fM, DiffpackFileSchema as fN, DiffpackIdSchema as fO, type DiffpackManifest as fP, DiffpackManifestSchema as fQ, type DiffpackOrigin as fR, DiffpackOriginSchema as fS, type DiffpackOverlap as fT, DiffpackOverlapSchema as fU, type DiffpackRecord as fV, DiffpackRecordSchema as fW, type DiffpackResponse as fX, DiffpackResponseSchema as fY, DiffpackSchema as fZ, type DiffpackStatus as f_, CreateTaskRequestSchema as fa, type CreateTypedProjectRequest as fb, CreateTypedProjectRequestSchema as fc, type CreateTypedProjectResponse as fd, CreateTypedProjectResponseSchema as fe, CredentialCapabilitySchema as ff, type CustomMcpImportWarning as fg, CustomMcpImportWarningSchema as fh, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as fi, DEFAULT_PROMPT_DRAFT_KEEP_SENT_DAYS as fj, DEFAULT_TUNING_PROFILE_ID as fk, type DeclineGrowthLevelUpRequest as fl, DeclineGrowthLevelUpRequestSchema as fm, type DeclinedProposalRecord as fn, DeclinedProposalRecordSchema as fo, type DelegateSecurityFindingRequest as fp, DelegateSecurityFindingRequestSchema as fq, type DelegateSecurityFindingResponse as fr, DelegateSecurityFindingResponseSchema as fs, type DeletePromptDraftResponse as ft, DeletePromptDraftResponseSchema as fu, type DescribeFolderRequest as fv, DescribeFolderRequestSchema as fw, type DescribeFolderResponse as fx, DescribeFolderResponseSchema as fy, type DescribeTableRequest as fz, type MapPlaza as g, FetchRepoRequestSchema as g$, type DiffpackSummary as g0, DiffpackSummarySchema as g1, type DisableSuggestedWorkRequest as g2, DisableSuggestedWorkRequestSchema as g3, type DiscoveredCommand as g4, DiscoveredCommandSchema as g5, type DiscoveredInstruction as g6, DiscoveredInstructionSchema as g7, type DiscoveredSkill as g8, DiscoveredSkillSchema as g9, type EnableSuggestedWorkRequest as gA, EnableSuggestedWorkRequestSchema as gB, type EngineConfig as gC, EngineConfigSchema as gD, type EnsureGezelRequest as gE, EnsureGezelRequestSchema as gF, type EnsureGezelResponse as gG, EnsureGezelResponseSchema as gH, type Entity as gI, type EntityId as gJ, EntityIdSchema as gK, EntitySchema as gL, type ErrorResponse as gM, ErrorResponseSchema as gN, type EvalHints as gO, EvalHintsSchema as gP, type ExpectedDeliverable as gQ, ExpectedDeliverableSchema as gR, type ExternalFolders as gS, ExternalFoldersSchema as gT, type ExternalRequestDiagnostics as gU, ExternalRequestDiagnosticsSchema as gV, type FetchDiffRequest as gW, FetchDiffRequestSchema as gX, type FetchDiffResponse as gY, FetchDiffResponseSchema as gZ, type FetchRepoRequest as g_, type DismissDiffpackResponse as ga, DismissDiffpackResponseSchema as gb, type DismissSuggestedWorkRequest as gc, DismissSuggestedWorkRequestSchema as gd, type DocumentExportOptions as ge, DocumentExportOptionsSchema as gf, type DocumentMediaExportRequest as gg, DocumentMediaExportRequestSchema as gh, type DocumentMediaExportSource as gi, DocumentMediaExportSourceSchema as gj, type DocumentSearchResult as gk, DocumentSearchResultSchema as gl, type DraftScriptRequest as gm, DraftScriptRequestSchema as gn, type DraftScriptResponse as go, DraftScriptResponseSchema as gp, type DriveIndexEnrichmentRequest as gq, DriveIndexEnrichmentRequestSchema as gr, type DriveIndexEnrichmentResponse as gs, DriveIndexEnrichmentResponseSchema as gt, type DrySamplerConfig as gu, DrySamplerSchema as gv, type DuplicatePromptDraftRequest as gw, DuplicatePromptDraftRequestSchema as gx, type EmbeddingsHealth as gy, EmbeddingsHealthSchema as gz, type MapBuilding as h, GateCheckSchema as h$, type FetchRepoResponse as h0, FetchRepoResponseSchema as h1, type FetchUrlRequest as h2, FetchUrlRequestSchema as h3, type FetchUrlResponse as h4, FetchUrlResponseSchema as h5, type FileContextFinding as h6, FileContextFindingSchema as h7, type FileContextImporter as h8, FileContextImporterSchema as h9, FindFilesRequestSchema as hA, type FindFilesResponse as hB, FindFilesResponseSchema as hC, type FindReferencesRequest as hD, FindReferencesRequestSchema as hE, type FindReferencesResponse as hF, FindReferencesResponseSchema as hG, type FindSimilarImagesRequest as hH, FindSimilarImagesRequestSchema as hI, type FindSimilarImagesResponse as hJ, FindSimilarImagesResponseSchema as hK, type FindSymbolRequest as hL, FindSymbolRequestSchema as hM, type FindSymbolResponse as hN, FindSymbolResponseSchema as hO, type FitnessCheck as hP, FitnessCheckSchema as hQ, type FixBoekwachterIssueRequest as hR, FixBoekwachterIssueRequestSchema as hS, type FixBoekwachterIssueResponse as hT, FixBoekwachterIssueResponseSchema as hU, type FlagSpec as hV, FlagSpecSchema as hW, GATE_DEFAULT_MAX_ATTEMPTS as hX, GATE_MAX_PROGRESS_ATTEMPTS as hY, GEZAPP_SOURCE_MANIFEST_FILENAME as hZ, type GateAttemptRecord as h_, type FileContextRequest as ha, FileContextRequestSchema as hb, FileContextResponseSchema as hc, type FileMapRequest as hd, FileMapRequestSchema as he, type FileMapResponse as hf, FileMapResponseSchema as hg, type FileMapScope as hh, FileMapScopeSchema as hi, type FileReviewIssue as hj, FileReviewIssueSchema as hk, type FileReviewIssueSeverity as hl, FileReviewIssueSeveritySchema as hm, type FileReviewReply as hn, FileReviewReplySchema as ho, type FileReviewRequest as hp, FileReviewRequestSchema as hq, type FileReviewResponse as hr, FileReviewResponseSchema as hs, type FileReviewWire as ht, FileReviewWireSchema as hu, type FindEntityRequest as hv, FindEntityRequestSchema as hw, type FindEntityResponse as hx, FindEntityResponseSchema as hy, type FindFilesRequest as hz, type CompassRegion as i, GezmodelImportReviewSchema as i$, GateScriptRefSchema as i0, type GateScriptResult as i1, GateScriptResultSchema as i2, type GateSpec as i3, GateSpecSchema as i4, type GenerateGezelAboutRequest as i5, GenerateGezelAboutRequestSchema as i6, type GenerateGezelIconRequest as i7, GenerateGezelIconRequestSchema as i8, type GetBoekwachterIssueRequest as i9, GezappSourceManifestSchema as iA, GezelConfigSchema as iB, type GezelGrowthResponse as iC, GezelGrowthResponseSchema as iD, type GezelGrowthState as iE, GezelGrowthStateSchema as iF, type GezelGrowthSummary as iG, GezelGrowthSummarySchema as iH, GezelIconHistoryEntrySchema as iI, type GezelIconHistoryResponse as iJ, GezelIconHistoryResponseSchema as iK, type GezelResponse as iL, GezelResponseSchema as iM, type GezelTemplateIdentity as iN, GezelTemplateIdentitySchema as iO, type GezelTemplateManifest as iP, GezelTemplateManifestSchema as iQ, type GezelTemplateVersionManifest as iR, GezelTemplateVersionManifestSchema as iS, type GezmodelBundleManifest as iT, GezmodelBundleManifestSchema as iU, type GezmodelEngine as iV, GezmodelEngineSchema as iW, type GezmodelFile as iX, GezmodelFileSchema as iY, type GezmodelImportProgress as iZ, type GezmodelImportReview as i_, GetBoekwachterIssueRequestSchema as ia, type GetBoekwachterIssueResponse as ib, GetBoekwachterIssueResponseSchema as ic, type GetScriptSourceResponse as id, GetScriptSourceResponseSchema as ie, type GezappDependency as ig, type GezappDependencyKind as ih, GezappDependencyKindSchema as ii, GezappDependencySchema as ij, type GezappEmbeddedKind as ik, GezappEmbeddedKindSchema as il, type GezappEntry as im, GezappEntrySchema as io, type GezappInstallReceipt as ip, GezappInstallReceiptSchema as iq, type GezappItem as ir, GezappItemSchema as is, type GezappManifest as it, GezappManifestSchema as iu, type GezappRegistry as iv, type GezappRegistryEntry as iw, GezappRegistryEntrySchema as ix, GezappRegistrySchema as iy, type GezappSourceManifest as iz, type ScriptOutputField as j, GitHubIdentityResponseSchema as j$, type GezmodelLicense as j0, GezmodelLicenseSchema as j1, type GildeUpdateCheckOutcome as j2, GildeUpdateCheckOutcomeSchema as j3, type GildeUpdateCheckResult as j4, GildeUpdateCheckResultSchema as j5, type GildeUpdateStatusResponse as j6, GildeUpdateStatusResponseSchema as j7, type GitAbandonMergeResponse as j8, GitAbandonMergeResponseSchema as j9, type GitConflictKind as jA, GitConflictKindSchema as jB, type GitConflictVersionsResponse as jC, GitConflictVersionsResponseSchema as jD, type GitDiscardRequest as jE, GitDiscardRequestSchema as jF, type GitDiscardResponse as jG, GitDiscardResponseSchema as jH, type GitFetchResponse as jI, GitFetchResponseSchema as jJ, type GitFileDiffResponse as jK, GitFileDiffResponseSchema as jL, type GitHubAuthMeta as jM, GitHubAuthMetaSchema as jN, type GitHubCheckStatusResponse as jO, GitHubCheckStatusResponseSchema as jP, type GitHubCreateCommentRequest as jQ, GitHubCreateCommentRequestSchema as jR, type GitHubCreateCommentResponse as jS, GitHubCreateCommentResponseSchema as jT, type GitHubCreatePullRequest as jU, GitHubCreatePullRequestSchema as jV, type GitHubCreatePullResponse as jW, GitHubCreatePullResponseSchema as jX, type GitHubCredentialSource as jY, type GitHubIdentity as jZ, type GitHubIdentityResponse as j_, type GitAiMergeRequest as ja, GitAiMergeRequestSchema as jb, type GitAiMergeResponse as jc, GitAiMergeResponseSchema as jd, type GitBranchSwitchRequest as je, GitBranchSwitchRequestSchema as jf, type GitBranchesResponse as jg, GitBranchesResponseSchema as jh, type GitChangeKind as ji, GitChangeKindSchema as jj, type GitChangesResponse as jk, GitChangesResponseSchema as jl, type GitCloneResponse as jm, GitCloneResponseSchema as jn, type GitCommitDetailResponse as jo, GitCommitDetailResponseSchema as jp, type GitCommitRequest as jq, GitCommitRequestSchema as jr, type GitCommitResponse as js, GitCommitResponseSchema as jt, type GitCompleteMergeRequest as ju, GitCompleteMergeRequestSchema as jv, type GitCompleteMergeResponse as jw, GitCompleteMergeResponseSchema as jx, type GitConflictFile as jy, GitConflictFileSchema as jz, type ScriptMeta as k, type GithubChangesResponse as k$, GitHubIdentitySchema as k0, type GitHubLoginPollRequest as k1, GitHubLoginPollRequestSchema as k2, type GitHubLoginPollResponse as k3, GitHubLoginPollResponseSchema as k4, type GitHubLoginStartResponse as k5, GitHubLoginStartResponseSchema as k6, type GitHubPullComment as k7, GitHubPullCommentSchema as k8, type GitHubPullDetail as k9, GitResolveConflictRequestSchema as kA, type GitResolveConflictResponse as kB, GitResolveConflictResponseSchema as kC, type GitStatusResponse as kD, GitStatusResponseSchema as kE, type GitSuggestMessageResponse as kF, GitSuggestMessageResponseSchema as kG, type GitSyncResponse as kH, GitSyncResponseSchema as kI, type GitSyncState as kJ, GitSyncStateSchema as kK, type GitWorkingChange as kL, GitWorkingChangeSchema as kM, type GithubAbandonMergeResponse as kN, GithubAbandonMergeResponseSchema as kO, type GithubAiMergeRequest as kP, GithubAiMergeRequestSchema as kQ, type GithubAiMergeResponse as kR, GithubAiMergeResponseSchema as kS, type GithubAuthMeta as kT, GithubAuthMetaSchema as kU, type GithubBranchSwitchRequest as kV, GithubBranchSwitchRequestSchema as kW, type GithubBranchesResponse as kX, GithubBranchesResponseSchema as kY, type GithubChangeKind as kZ, GithubChangeKindSchema as k_, GitHubPullDetailSchema as ka, type GitHubPullDiffResponse as kb, GitHubPullDiffResponseSchema as kc, type GitHubPullFile as kd, GitHubPullFileSchema as ke, type GitHubPullSummary as kf, GitHubPullSummarySchema as kg, type GitHubRepoPreviewRequest as kh, GitHubRepoPreviewRequestSchema as ki, type GitHubRepoPreviewResponse as kj, GitHubRepoPreviewResponseSchema as kk, type GitHubRepoSummary as kl, GitHubRepoSummarySchema as km, type GitHubReposResponse as kn, GitHubReposResponseSchema as ko, type GitHubWorkflowRun as kp, GitHubWorkflowRunSchema as kq, type GitLogEntry as kr, GitLogEntrySchema as ks, type GitLogResponse as kt, GitLogResponseSchema as ku, type GitMergeStateResponse as kv, GitMergeStateResponseSchema as kw, type GitPushResponse as kx, GitPushResponseSchema as ky, type GitResolveConflictRequest as kz, type SecurityPolicy as l, GithubPullSummarySchema as l$, GithubChangesResponseSchema as l0, type GithubCheckStatusResponse as l1, GithubCheckStatusResponseSchema as l2, type GithubCloneResponse as l3, GithubCloneResponseSchema as l4, type GithubCommitDetailResponse as l5, GithubCommitDetailResponseSchema as l6, type GithubCommitRequest as l7, GithubCommitRequestSchema as l8, type GithubCommitResponse as l9, type GithubFileDiffResponse as lA, GithubFileDiffResponseSchema as lB, type GithubIdentity as lC, type GithubIdentityResponse as lD, GithubIdentityResponseSchema as lE, GithubIdentitySchema as lF, type GithubLogEntry as lG, GithubLogEntrySchema as lH, type GithubLogResponse as lI, GithubLogResponseSchema as lJ, type GithubLoginPollRequest as lK, GithubLoginPollRequestSchema as lL, type GithubLoginPollResponse as lM, GithubLoginPollResponseSchema as lN, type GithubLoginStartResponse as lO, GithubLoginStartResponseSchema as lP, type GithubMergeStateResponse as lQ, GithubMergeStateResponseSchema as lR, type GithubPullComment as lS, GithubPullCommentSchema as lT, type GithubPullDetail as lU, GithubPullDetailSchema as lV, type GithubPullDiffResponse as lW, GithubPullDiffResponseSchema as lX, type GithubPullFile as lY, GithubPullFileSchema as lZ, type GithubPullSummary as l_, GithubCommitResponseSchema as la, type GithubCompleteMergeRequest as lb, GithubCompleteMergeRequestSchema as lc, type GithubCompleteMergeResponse as ld, GithubCompleteMergeResponseSchema as le, type GithubConflictFile as lf, GithubConflictFileSchema as lg, type GithubConflictKind as lh, GithubConflictKindSchema as li, type GithubConflictVersionsResponse as lj, GithubConflictVersionsResponseSchema as lk, type GithubCreateCommentRequest as ll, GithubCreateCommentRequestSchema as lm, type GithubCreateCommentResponse as ln, GithubCreateCommentResponseSchema as lo, type GithubCreatePullRequest as lp, GithubCreatePullRequestSchema as lq, type GithubCreatePullResponse as lr, GithubCreatePullResponseSchema as ls, type GithubCredentialSource as lt, type GithubDiscardRequest as lu, GithubDiscardRequestSchema as lv, type GithubDiscardResponse as lw, GithubDiscardResponseSchema as lx, type GithubFetchResponse as ly, GithubFetchResponseSchema as lz, type ProjectManagedWorkspaceWritePolicy as m, HealthResponseSchema as m$, type GithubPushResponse as m0, GithubPushResponseSchema as m1, type GithubRepoPreviewRequest as m2, GithubRepoPreviewRequestSchema as m3, type GithubRepoPreviewResponse as m4, GithubRepoPreviewResponseSchema as m5, type GithubRepoSummary as m6, GithubRepoSummarySchema as m7, type GithubReposResponse as m8, GithubReposResponseSchema as m9, type GrowthProposal as mA, GrowthProposalSchema as mB, type GrowthSignals as mC, GrowthSignalsSchema as mD, type HandboekArea as mE, HandboekAreaSchema as mF, type HandboekArticle as mG, HandboekArticleSchema as mH, type HandboekFigure as mI, HandboekFigureSchema as mJ, type HandboekHowDoIResponse as mK, HandboekHowDoIResponseSchema as mL, type HandboekNarrationResponse as mM, HandboekNarrationResponseSchema as mN, type HandboekNarrationSegment as mO, HandboekNarrationSegmentSchema as mP, type HandboekRenderMode as mQ, HandboekRenderModeSchema as mR, type HandboekToc as mS, type HandboekTocArea as mT, HandboekTocAreaSchema as mU, type HandboekTocEntry as mV, HandboekTocEntrySchema as mW, HandboekTocSchema as mX, type HandboekTocSubcategory as mY, HandboekTocSubcategorySchema as mZ, type HealthResponse as m_, type GithubResolveConflictRequest as ma, GithubResolveConflictRequestSchema as mb, type GithubResolveConflictResponse as mc, GithubResolveConflictResponseSchema as md, type GithubStatusResponse as me, GithubStatusResponseSchema as mf, type GithubSuggestMessageResponse as mg, GithubSuggestMessageResponseSchema as mh, type GithubSyncResponse as mi, GithubSyncResponseSchema as mj, type GithubSyncState as mk, GithubSyncStateSchema as ml, type GithubWorkflowRun as mm, GithubWorkflowRunSchema as mn, type GithubWorkingChange as mo, GithubWorkingChangeSchema as mp, type GpuProcessMemory as mq, GpuProcessMemorySchema as mr, type GpuProcessOwner as ms, GpuProcessOwnerSchema as mt, type GrepArtifactRequest as mu, GrepArtifactRequestSchema as mv, type GrepArtifactResponse as mw, GrepArtifactResponseSchema as mx, type GrowthEvidence as my, GrowthEvidenceSchema as mz, type CodexPermissionMode as n, type ImportCustomMcpConfigResponse as n$, type HistoryEntry as n0, HistoryEntrySchema as n1, HistoryEventEntrySchema as n2, type HistoryEventKind as n3, HistoryEventKindSchema as n4, HistoryEventSchema as n5, type HistoryFilter as n6, HistoryFilterSchema as n7, type HistorySessionEntry as n8, HistorySessionEntrySchema as n9, ImageLayerSchema as nA, type ImageModelAuxiliaryFile as nB, ImageModelAuxiliaryFileSchema as nC, type ImageModelAuxiliaryRole as nD, ImageModelAuxiliaryRoleSchema as nE, type ImageModelCategory as nF, ImageModelCategorySchema as nG, type ImageModelHardwareTier as nH, ImageModelHardwareTierSchema as nI, type ImageModelIdentity as nJ, ImageModelIdentitySchema as nK, type ImageModelManifest as nL, ImageModelManifestSchema as nM, type ImageModelPullEvent as nN, ImageModelPullEventSchema as nO, type ImageModelVersionManifest as nP, ImageModelVersionManifestSchema as nQ, type ImageRecognition as nR, ImageRecognitionSchema as nS, type ImageRegion as nT, ImageRegionSchema as nU, type ImageStaticMeta as nV, ImageStaticMetaSchema as nW, type ImportAiAppResult as nX, ImportAiAppResultSchema as nY, type ImportCustomMcpConfigRequest as nZ, ImportCustomMcpConfigRequestSchema as n_, type HookDecision as na, HookDecisionSchema as nb, type HookPhase as nc, HookPhaseSchema as nd, type HookResult as ne, HookResultSchema as nf, type HookSpec as ng, HookSpecSchema as nh, type HtmlLayer as ni, HtmlLayerSchema as nj, HttpsOriginSchema as nk, type ImageEngineStatusResponse as nl, ImageEngineStatusResponseSchema as nm, type ImageExif as nn, ImageExifSchema as no, type ImageGenerationApprovalIntent as np, ImageGenerationApprovalIntentSchema as nq, type ImageGenerationMeta as nr, ImageGenerationMetaSchema as ns, type ImageGenerationRequest as nt, ImageGenerationRequestSchema as nu, type ImageGenerationResponse as nv, ImageGenerationResponseSchema as nw, type ImageInputSource as nx, ImageInputSourceSchema as ny, type ImageLayer as nz, type ClaudePermissionMode as o, KeurmeesterCaseOpenedSchema as o$, ImportCustomMcpConfigResponseSchema as o0, type ImportProvenance as o1, ImportProvenanceSchema as o2, type ImportedAboutProvenance as o3, ImportedAboutProvenanceSchema as o4, type ImportedCraftbookProvenance as o5, ImportedCraftbookProvenanceSchema as o6, type ImportedGezelProvenance as o7, ImportedGezelProvenanceSchema as o8, type IncompleteKnowledgeDownload as o9, InstalledRecognitionModelSchema as oA, type InstalledToolset as oB, InstalledToolsetSchema as oC, type InstalledVideoModel as oD, InstalledVideoModelSchema as oE, type InstructionMergeMode as oF, InstructionMergeModeSchema as oG, type InstructionSourceFile as oH, InstructionSourceFileSchema as oI, type InterruptSessionRequest as oJ, InterruptSessionRequestSchema as oK, type InvokePageToolRequest as oL, InvokePageToolRequestSchema as oM, type InvokePageToolResponse as oN, InvokePageToolResponseSchema as oO, type InvokeSessionToolRequest as oP, InvokeSessionToolRequestSchema as oQ, type InvokeSessionToolResponse as oR, InvokeSessionToolResponseSchema as oS, KNOWLEDGE_EMBEDDING_PROFILE_IDS as oT, KNOWLEDGE_HISTORY_KINDS as oU, KNOWN_PROFILE_IDS as oV, type KeurmeesterAction as oW, KeurmeesterActionSchema as oX, type KeurmeesterCaseClosed as oY, KeurmeesterCaseClosedSchema as oZ, type KeurmeesterCaseOpened as o_, IncompleteKnowledgeDownloadSchema as oa, type IndexReadinessAiTier as ob, IndexReadinessAiTierSchema as oc, type IndexReadinessReport as od, IndexReadinessReportSchema as oe, IndexReadinessReviewsSchema as of, type IndexReadinessSearch as og, IndexReadinessSearchSchema as oh, IndexReadinessWaitSchema as oi, type InsertAtMarkerInProjectWorkspaceFileRequest as oj, InsertAtMarkerInProjectWorkspaceFileRequestSchema as ok, type InstallOpenCodePluginRequest as ol, InstallOpenCodePluginRequestSchema as om, type InstallPackageRequest as on, InstallPackageRequestSchema as oo, type InstallPackageResponse as op, InstallPackageResponseSchema as oq, type InstallPiExtensionRequest as or, InstallPiExtensionRequestSchema as os, type InstalledAudioModel as ot, InstalledAudioModelSchema as ou, type InstalledImageModel as ov, InstalledImageModelSchema as ow, type InstalledPackage as ox, InstalledPackageSchema as oy, type InstalledRecognitionModel as oz, type SystemDiagnostics as p, LicenseClassSchema as p$, type KeurmeesterCaseOutcome as p0, KeurmeesterCaseOutcomeSchema as p1, type KeurmeesterCaseRecord as p2, KeurmeesterCaseRecordSchema as p3, type KeurmeesterFailureClass as p4, KeurmeesterFailureClassSchema as p5, type KeurmeesterTriggerKind as p6, KeurmeesterTriggerKindSchema as p7, type KeurmeesterVerdict as p8, KeurmeesterVerdictSchema as p9, type KnowledgeInstallPhase as pA, KnowledgeInstallPhaseSchema as pB, type KnowledgeInstallRequest as pC, KnowledgeInstallRequestSchema as pD, type KnowledgeInstallSourceKind as pE, KnowledgeInstallSourceKindSchema as pF, type KnowledgeMachineInventory as pG, KnowledgeMachineInventorySchema as pH, type KnowledgeSearchRequest as pI, KnowledgeSearchRequestSchema as pJ, type KnowledgeSemanticSearchMode as pK, KnowledgeSemanticSearchModeSchema as pL, type KnowledgeStorageScope as pM, KnowledgeStorageScopeSchema as pN, type KnowledgeUpdateCandidate as pO, KnowledgeUpdateCandidateSchema as pP, type KnowledgeUpdatesResponse as pQ, KnowledgeUpdatesResponseSchema as pR, type KnowledgeUserRegistry as pS, KnowledgeUserRegistrySchema as pT, type KnownProfileId as pU, LEVEL_THRESHOLDS as pV, type Layer as pW, LayerSchema as pX, type LegacyCodexPermissionMode as pY, LegacyCodexPermissionModeSchema as pZ, type LicenseClass as p_, type KnowledgeActiveInstall as pa, KnowledgeActiveInstallSchema as pb, type KnowledgeAvailableCatalog as pc, KnowledgeAvailableCatalogSchema as pd, type KnowledgeCatalogCategory as pe, KnowledgeCatalogCategorySchema as pf, type KnowledgeCatalogHuggingfaceSource as pg, KnowledgeCatalogHuggingfaceSourceSchema as ph, type KnowledgeCatalogIdentity as pi, KnowledgeCatalogIdentitySchema as pj, type KnowledgeCatalogItemManifest as pk, KnowledgeCatalogItemManifestSchema as pl, type KnowledgeCatalogRef as pm, KnowledgeCatalogRefSchema as pn, type KnowledgeCatalogStatus as po, KnowledgeCatalogStatusSchema as pp, type KnowledgeCatalogVersionManifest as pq, KnowledgeCatalogVersionManifestSchema as pr, type KnowledgeEmbeddingProfileId as ps, type KnowledgeHistoryKind as pt, type KnowledgeHuggingfaceFile as pu, KnowledgeHuggingfaceFileSchema as pv, type KnowledgeInstallEvent as pw, KnowledgeInstallEventSchema as px, type KnowledgeInstallJob as py, KnowledgeInstallJobSchema as pz, type ChatModelManifest as q, type ListMentionCandidatesResponse as q$, LicenseMetaShape as q0, type ListActiveImagePullsResponse as q1, ListActiveImagePullsResponseSchema as q2, type ListActiveVideoPullsResponse as q3, ListActiveVideoPullsResponseSchema as q4, type ListAiAppsResponse as q5, ListAiAppsResponseSchema as q6, type ListAppServeSitesResponse as q7, ListAppServeSitesResponseSchema as q8, type ListAudioCatalogResponse as q9, ListGezelsResponseSchema as qA, type ListGitHubPullCommentsResponse as qB, ListGitHubPullCommentsResponseSchema as qC, type ListGitHubPullFilesResponse as qD, ListGitHubPullFilesResponseSchema as qE, type ListGitHubPullsResponse as qF, ListGitHubPullsResponseSchema as qG, type ListGitHubWorkflowRunsResponse as qH, ListGitHubWorkflowRunsResponseSchema as qI, type ListGithubPullCommentsResponse as qJ, ListGithubPullCommentsResponseSchema as qK, type ListGithubPullFilesResponse as qL, ListGithubPullFilesResponseSchema as qM, type ListGithubPullsResponse as qN, ListGithubPullsResponseSchema as qO, type ListGithubWorkflowRunsResponse as qP, ListGithubWorkflowRunsResponseSchema as qQ, type ListHistoryResponse as qR, ListHistoryResponseSchema as qS, type ListInstalledAudioModelsResponse as qT, ListInstalledAudioModelsResponseSchema as qU, type ListInstalledImageModelsResponse as qV, ListInstalledImageModelsResponseSchema as qW, type ListInstalledRecognitionModelsResponse as qX, ListInstalledRecognitionModelsResponseSchema as qY, type ListInstalledVideoModelsResponse as qZ, ListInstalledVideoModelsResponseSchema as q_, ListAudioCatalogResponseSchema as qa, type ListAudioVoicesResponse as qb, ListAudioVoicesResponseSchema as qc, type ListCatalogItemVersionsResponse as qd, ListCatalogItemVersionsResponseSchema as qe, type ListCatalogItemsResponse as qf, ListCatalogItemsResponseSchema as qg, type ListChatSessionsResponse as qh, ListChatSessionsResponseSchema as qi, type ListCodeReviewsResponse as qj, ListCodeReviewsResponseSchema as qk, type ListCraftbooksResponse as ql, ListCraftbooksResponseSchema as qm, type ListDependenciesResponse as qn, ListDependenciesResponseSchema as qo, type ListDiffpacksResponse as qp, ListDiffpacksResponseSchema as qq, type ListEntityMentionsRequest as qr, ListEntityMentionsRequestSchema as qs, type ListEntityMentionsResponse as qt, ListEntityMentionsResponseSchema as qu, type ListFileIssuesRequest as qv, ListFileIssuesRequestSchema as qw, type ListFileIssuesResponse as qx, ListFileIssuesResponseSchema as qy, type ListGezelsResponse as qz, type ModelFitnessRecord as r, MapBuildingSchema as r$, ListMentionCandidatesResponseSchema as r0, type ListModelsResponse as r1, ListModelsResponseSchema as r2, type ListPackageScriptsResponse as r3, ListPackageScriptsResponseSchema as r4, type ListPeopleResponse as r5, ListPeopleResponseSchema as r6, type ListProjectsForGezelResponse as r7, ListProjectsForGezelResponseSchema as r8, type ListProjectsResponse as r9, type LlamaCppContextSizingResponse as rA, LlamaCppContextSizingResponseSchema as rB, LlamaCppContextSizingSchema as rC, type LlamaCppEngineConfig as rD, LlamaCppEngineConfigSchema as rE, type LocalEngineLifecycle as rF, LocalEngineLifecycleSchema as rG, type LocalHarnessBridge as rH, LocalHarnessBridgeSchema as rI, type LocalHarnessModelOption as rJ, LocalHarnessModelOptionSchema as rK, type LocalHarnessSetupState as rL, LocalHarnessSetupStateSchema as rM, LocalHarnessStatusBaseSchema as rN, MAX_RESTART_RESUMES as rO, MEESTER_STATUS_HEADLINE_MAX as rP, MODEL_TIER_ORDER as rQ, type MachineMemoryKind as rR, MachineMemoryKindSchema as rS, type MachineMemoryUsage as rT, MachineMemoryUsageSchema as rU, type MapAttackSurfaceResponse as rV, MapAttackSurfaceResponseSchema as rW, type MapBlock as rX, type MapBlockHealth as rY, MapBlockHealthSchema as rZ, MapBlockSchema as r_, ListProjectsResponseSchema as ra, type ListPromptDraftsResponse as rb, ListPromptDraftsResponseSchema as rc, type ListQuestionsResponse as rd, ListQuestionsResponseSchema as re, type ListRecognitionCatalogResponse as rf, ListRecognitionCatalogResponseSchema as rg, type ListScriptsResponse as rh, ListScriptsResponseSchema as ri, type ListSessionQueueResponse as rj, ListSessionQueueResponseSchema as rk, type ListSessionToolsResponse as rl, ListSessionToolsResponseSchema as rm, type ListTablesRequest as rn, ListTablesRequestSchema as ro, type ListTablesResponse as rp, ListTablesResponseSchema as rq, type ListTaskNotesResponse as rr, ListTaskNotesResponseSchema as rs, type ListTasksResponse as rt, ListTasksResponseSchema as ru, type ListTerminalThreadsResponse as rv, ListTerminalThreadsResponseSchema as rw, type ListTimelineResponse as rx, ListTimelineResponseSchema as ry, type LlamaCppContextSizing as rz, type GateScriptRef as s, type ModelStyle as s$, MapDistrictSchema as s0, MapPlazaSchema as s1, type MapPrChange as s2, MapPrChangeSchema as s3, type MapPrOverlay as s4, MapPrOverlaySchema as s5, type MapRepoRequest as s6, MapRepoRequestSchema as s7, type MapRepoResponse as s8, MapRepoResponseSchema as s9, MessageGezelResponseSchema as sA, type MessageImageDigest as sB, MessageImageDigestSchema as sC, MinGezelVersionShape as sD, type MlxRuntimeStatus as sE, MlxRuntimeStatusSchema as sF, type MockHttpRoute as sG, MockHttpRouteSchema as sH, type MockService as sI, MockServiceSchema as sJ, type ModelContextOverrideUpdate as sK, ModelContextOverrideUpdateSchema as sL, type ModelContextOverridesResponse as sM, ModelContextOverridesResponseSchema as sN, type ModelDownloadPreflightRequest as sO, ModelDownloadPreflightRequestSchema as sP, type ModelDownloadPreflightResponse as sQ, ModelDownloadPreflightResponseSchema as sR, type ModelFamily as sS, ModelFamilySchema as sT, ModelFitnessRecordSchema as sU, type ModelFitnessStatus as sV, ModelFitnessStatusSchema as sW, type ModelFitnessTrigger as sX, ModelFitnessTriggerSchema as sY, type ModelInfo as sZ, ModelInfoSchema as s_, type MapRoad as sa, MapRoadSchema as sb, MapStreetSchema as sc, type MapUrbanity as sd, MapUrbanitySchema as se, type McpToolInfo as sf, McpToolInfoSchema as sg, type MeesterStatusAction as sh, MeesterStatusActionSchema as si, type MeesterStatusCta as sj, MeesterStatusCtaSchema as sk, type MeesterStatusModelOutput as sl, MeesterStatusModelOutputSchema as sm, type MeesterStatusReport as sn, MeesterStatusReportSchema as so, type MeesterStatusResponse as sp, MeesterStatusResponseSchema as sq, type MeesterStatusState as sr, MeesterStatusStateSchema as ss, type MemorySearchRequest as st, MemorySearchRequestSchema as su, type MentionCandidate as sv, MentionCandidateSchema as sw, type MessageGezelRequest as sx, MessageGezelRequestSchema as sy, type MessageGezelResponse as sz, type ModelTier as t, ObservationRetentionSchema as t$, ModelStyleSchema as t0, ModelTierSchema as t1, type NamedScriptCapability as t2, NamedScriptCapabilitySchema as t3, type NativeEngineInstallStatus as t4, NativeEngineInstallStatusSchema as t5, type NativeEngineName as t6, NativeEngineNameSchema as t7, type NativeEngineResolveEvent as t8, NativeEngineResolveEventSchema as t9, NightShiftTasksResponseSchema as tA, type NightShiftWindowBounds as tB, NightShiftWindowBoundsSchema as tC, type NodeScriptPassesCheck as tD, NodeScriptPassesCheckSchema as tE, type NormalizedStepGate as tF, type NpmInstallApprovalDecision as tG, NpmInstallApprovalDecisionSchema as tH, type NpmInstallApprovalPackage as tI, NpmInstallApprovalPackageSchema as tJ, type NpmInstallRequest as tK, NpmInstallRequestSchema as tL, NpmPackageNameSchema as tM, type NpmRegistryPackageRequest as tN, NpmRegistryPackageRequestSchema as tO, NpmRegistryVersionSchema as tP, type ObservationColumn as tQ, type ObservationColumnRole as tR, ObservationColumnRoleSchema as tS, ObservationColumnSchema as tT, type ObservationColumnType as tU, ObservationColumnTypeSchema as tV, type ObservationExemplar as tW, ObservationExemplarSchema as tX, type ObservationMeasure as tY, ObservationMeasureSchema as tZ, type ObservationRetention as t_, type NativeEngineStatusResponse as ta, NativeEngineStatusResponseSchema as tb, NewCraftbookStepSchema as tc, type NewTaskFanout as td, NewTaskFanoutSchema as te, type NewTaskStep as tf, NewTaskStepSchema as tg, type NightShiftBackgroundWorkBrief as th, NightShiftBackgroundWorkBriefSchema as ti, type NightShiftCompletedTask as tj, NightShiftCompletedTaskSchema as tk, type NightShiftQuotaHoldReason as tl, NightShiftQuotaHoldReasonSchema as tm, type NightShiftReport as tn, NightShiftReportSchema as to, type NightShiftReviewIntent as tp, NightShiftReviewIntentSchema as tq, type NightShiftReviewResponse as tr, NightShiftReviewResponseSchema as ts, type NightShiftStatusResponse as tt, NightShiftStatusResponseSchema as tu, type NightShiftTallyResponse as tv, NightShiftTallyResponseSchema as tw, type NightShiftTaskBrief as tx, NightShiftTaskBriefSchema as ty, type NightShiftTasksResponse as tz, type GateCheck as u, type PendingHandoffQueue as u$, type ObservationRollup as u0, ObservationRollupSchema as u1, type ObservationTableManifest as u2, ObservationTableManifestSchema as u3, type ObservationTableSummary as u4, ObservationTableSummarySchema as u5, type OpenCodeSetupModelOption as u6, OpenCodeSetupModelOptionSchema as u7, type OpenCodeSetupPlugin as u8, OpenCodeSetupPluginSchema as u9, PageReadMessageSchema as uA, type PageReadRequest as uB, PageReadRequestSchema as uC, type PageReadResponse as uD, PageReadResponseSchema as uE, type PageReadSource as uF, PageReadSourceSchema as uG, PageRefreshMessageSchema as uH, type PageToParentMessage as uI, PageToParentMessageSchema as uJ, PageUnwatchMessageSchema as uK, PageWatchMessageSchema as uL, ParentChangeMessageSchema as uM, ParentInitMessageSchema as uN, ParentReadResultMessageSchema as uO, ParentResultMessageSchema as uP, ParentThemeMessageSchema as uQ, type ParentToPageMessage as uR, ParentToPageMessageSchema as uS, type ParseCraftbookTestSpecOptions as uT, type ParseCraftbookTestSpecResult as uU, type ParseRunRecordingOptions as uV, type ParseRunRecordingResult as uW, type PatchPromptDraftRequest as uX, PatchPromptDraftRequestSchema as uY, type PendingGezelMessage as uZ, PendingGezelMessageSchema as u_, type OpenCodeSetupPluginState as ua, OpenCodeSetupPluginStateSchema as ub, type OpenCodeSetupState as uc, OpenCodeSetupStateSchema as ud, type OpenCodeSetupStatusResponse as ue, OpenCodeSetupStatusResponseSchema as uf, OutcomeSchema as ug, type OutlineFileRequest as uh, OutlineFileRequestSchema as ui, type OutlineFileResponse as uj, OutlineFileResponseSchema as uk, PAGE_BRIDGE_VERSION as ul, type PageApiBootstrap as um, PageApiBootstrapSchema as un, type PageApiServeBootstrap as uo, PageApiServeBootstrapSchema as up, type PageBridgeErrorCode as uq, PageBridgeErrorCodeSchema as ur, type PageCheckRequest as us, PageCheckRequestSchema as ut, type PageCheckResponse as uu, PageCheckResponseSchema as uv, PageHelloMessageSchema as uw, PageInvokeMessageSchema as ux, type PageReadEntry as uy, PageReadEntrySchema as uz, type StepGate as v, ProjectManagedWorkspaceWritePolicySchema as v$, PendingHandoffQueueSchema as v0, type PendingImportItem as v1, PendingImportItemSchema as v2, type PendingImports as v3, PendingImportsSchema as v4, type PendingLevelUp as v5, PendingLevelUpSchema as v6, type PendingPersona as v7, PendingPersonaSchema as v8, type PendingScript as v9, ProjectAboutPreviewResponseSchema as vA, type ProjectActivity as vB, ProjectActivitySchema as vC, type ProjectApprovalsResponse as vD, ProjectApprovalsResponseSchema as vE, type ProjectConnectorBinding as vF, ProjectConnectorBindingSchema as vG, type ProjectCraftbookProvenance as vH, ProjectCraftbookProvenanceSchema as vI, type ProjectDetail as vJ, ProjectDetailSchema as vK, type ProjectFileEntry as vL, ProjectFileEntrySchema as vM, type ProjectFolderPreviewRequest as vN, ProjectFolderPreviewRequestSchema as vO, type ProjectFolderPreviewResponse as vP, ProjectFolderPreviewResponseSchema as vQ, type ProjectForGezel as vR, ProjectForGezelSchema as vS, type ProjectGitHub as vT, ProjectGitHubSchema as vU, type ProjectGithub as vV, ProjectGithubSchema as vW, type ProjectKnowledgeCatalogs as vX, ProjectKnowledgeCatalogsSchema as vY, type ProjectLocalConfig as vZ, ProjectLocalConfigSchema as v_, PendingScriptSchema as va, type PersonSample as vb, PersonSampleSchema as vc, type PersonSummary as vd, PersonSummarySchema as ve, type PiSetupExtension as vf, PiSetupExtensionSchema as vg, type PiSetupExtensionState as vh, PiSetupExtensionStateSchema as vi, type PiSetupModelOption as vj, PiSetupModelOptionSchema as vk, type PiSetupState as vl, PiSetupStateSchema as vm, type PiSetupStatusResponse as vn, PiSetupStatusResponseSchema as vo, type PixelsLayer as vp, PixelsLayerSchema as vq, type PreviewLogEntry as vr, PreviewLogEntrySchema as vs, type PreviewSource as vt, PreviewSourceSchema as vu, type ProfileKind as vv, type ProfileMeta as vw, type ProjectAboutPreviewRequest as vx, ProjectAboutPreviewRequestSchema as vy, type ProjectAboutPreviewResponse as vz, type CraftbookStep as w, type PromptTags as w$, type ProjectMode as w0, ProjectModeSchema as w1, type ProjectNudgeConfig as w2, ProjectNudgeConfigSchema as w3, type ProjectNudgeState as w4, ProjectNudgeStateSchema as w5, type ProjectResponse as w6, ProjectResponseSchema as w7, ProjectSchema as w8, type ProjectSearchCraftbookSuggestion as w9, ProjectTypeScheduleSchema as wA, type ProjectTypeSeedState as wB, ProjectTypeSeedStateSchema as wC, type ProjectTypeStatusResponse as wD, ProjectTypeStatusResponseSchema as wE, type ProjectTypeTool as wF, type ProjectTypeToolReaction as wG, ProjectTypeToolReactionSchema as wH, ProjectTypeToolSchema as wI, type ProjectTypeToolsetRef as wJ, ProjectTypeToolsetSchema as wK, type ProjectTypeVersionManifest as wL, ProjectTypeVersionManifestSchema as wM, type PrometheusAlertsCheck as wN, PrometheusAlertsCheckSchema as wO, type PromptDraft as wP, type PromptDraftConfig as wQ, PromptDraftConfigSchema as wR, type PromptDraftId as wS, PromptDraftIdSchema as wT, type PromptDraftMeta as wU, PromptDraftMetaSchema as wV, PromptDraftSchema as wW, type PromptDraftStatus as wX, PromptDraftStatusSchema as wY, type PromptDraftSummary as wZ, PromptDraftSummarySchema as w_, ProjectSearchCraftbookSuggestionSchema as wa, type ProjectSearchRequest as wb, ProjectSearchRequestSchema as wc, type ProjectSearchResponse as wd, ProjectSearchResponseSchema as we, type ProjectTabVisibility as wf, ProjectTabVisibilitySchema as wg, type ProjectTypeApplyPlan as wh, ProjectTypeApplyPlanSchema as wi, type ProjectTypeCategory as wj, ProjectTypeCategorySchema as wk, type ProjectTypeGezelRef as wl, ProjectTypeGezelSchema as wm, type ProjectTypeIdentity as wn, ProjectTypeIdentitySchema as wo, type ProjectTypeManifest as wp, ProjectTypeManifestSchema as wq, type ProjectTypeOverlay as wr, ProjectTypeOverlaySchema as ws, type ProjectTypePages as wt, ProjectTypePagesSchema as wu, type ProjectTypePreviewRead as wv, ProjectTypePreviewReadSchema as ww, type ProjectTypeProvenance as wx, ProjectTypeProvenanceSchema as wy, type ProjectTypeSchedule as wz, type StepDeliverable as x, ReferenceFileLocationResponseSchema as x$, PromptTagsSchema as x0, type QueryTableRequest as x1, QueryTableRequestSchema as x2, type QueryTableResponse as x3, QueryTableResponseSchema as x4, type Question as x5, type QuestionAnswer as x6, QuestionAnswerSchema as x7, type QuestionIntent as x8, QuestionIntentSchema as x9, type ReasoningBlock as xA, ReasoningBlockSchema as xB, type ReasoningFormat as xC, ReasoningFormatSchema as xD, type RecentTab as xE, type RecentTabArea as xF, RecentTabAreaSchema as xG, RecentTabSchema as xH, RecoMetaShape as xI, type RecognitionCatalogEntry as xJ, RecognitionCatalogEntrySchema as xK, type RecognitionHealth as xL, RecognitionHealthSchema as xM, type RecognitionMode as xN, type RecognitionModeRequest as xO, RecognitionModeRequestSchema as xP, RecognitionModeSchema as xQ, type RecognitionPullEvent as xR, RecognitionPullEventSchema as xS, type RecognitionRequest as xT, RecognitionRequestSchema as xU, type RecognitionResponse as xV, RecognitionResponseSchema as xW, RectSchema as xX, type ReferenceFileLocationRequest as xY, ReferenceFileLocationRequestSchema as xZ, type ReferenceFileLocationResponse as x_, QuestionSchema as xa, type QueuedMessage as xb, QueuedMessageSchema as xc, RETRIEVAL_MODES as xd, RETRIEVAL_SOURCES as xe, RUN_RECORDING_SCHEMA_VERSION as xf, type ReadArtifactSliceOpts as xg, ReadArtifactSliceOptsSchema as xh, type ReadArtifactSliceResponse as xi, ReadArtifactSliceResponseSchema as xj, type ReadDocAsMarkdownRequest as xk, ReadDocAsMarkdownRequestSchema as xl, type ReadDocAsMarkdownResponse as xm, ReadDocAsMarkdownResponseSchema as xn, type ReadImageBase64Request as xo, ReadImageBase64RequestSchema as xp, type ReadImageBase64Response as xq, ReadImageBase64ResponseSchema as xr, type ReadSymbolRequest as xs, ReadSymbolRequestSchema as xt, type ReadSymbolResponse as xu, ReadSymbolResponseSchema as xv, type ReadWorkspaceFilesRequest as xw, ReadWorkspaceFilesRequestSchema as xx, type ReadWorkspaceFilesResponse as xy, ReadWorkspaceFilesResponseSchema as xz, type Craftbook as y, RewriteTextRequestSchema as y$, type ReferencePreviewRequest as y0, ReferencePreviewRequestSchema as y1, type ReferencePreviewResponse as y2, ReferencePreviewResponseSchema as y3, type RemoteServingConfig as y4, RemoteServingConfigSchema as y5, type RemoveAiAppResponse as y6, RemoveAiAppResponseSchema as y7, type RenameDocumentRequest as y8, RenameDocumentRequestSchema as y9, type ResolveArtifactResponse as yA, ResolveArtifactResponseSchema as yB, type ResolveSecurityFindingRequest as yC, ResolveSecurityFindingRequestSchema as yD, type ResolveSecurityFindingResponse as yE, ResolveSecurityFindingResponseSchema as yF, type RestoreConfirm as yG, RestoreConfirmSchema as yH, type RestoreConflict as yI, RestoreConflictSchema as yJ, type RestoreReview as yK, type RestoreReviewItem as yL, RestoreReviewItemSchema as yM, RestoreReviewSchema as yN, type RestoreScanRequest as yO, RestoreScanRequestSchema as yP, type RetrievalMode as yQ, RetrievalModeSchema as yR, type RetrievalPolicy as yS, RetrievalPolicySchema as yT, type RetrievalSource as yU, RetrievalSourceSchema as yV, type RevertGezelIconRequest as yW, RevertGezelIconRequestSchema as yX, type RewriteTextContext as yY, RewriteTextContextSchema as yZ, type RewriteTextRequest as y_, type RenameGezelRequest as ya, RenameGezelRequestSchema as yb, type RenamePersonRequest as yc, RenamePersonRequestSchema as yd, type RenderImageRequest as ye, RenderImageRequestSchema as yf, type RenderImageResponse as yg, RenderImageResponseSchema as yh, type ReplaceInProjectWorkspaceFileRequest as yi, ReplaceInProjectWorkspaceFileRequestSchema as yj, type ReplaceLinesInProjectWorkspaceFileRequest as yk, ReplaceLinesInProjectWorkspaceFileRequestSchema as yl, type ReportPreviewLogRequest as ym, ReportPreviewLogRequestSchema as yn, type RequestAskRequest as yo, RequestAskRequestSchema as yp, type RequestAskResponse as yq, RequestAskResponseSchema as yr, type RequestPermissionRequest as ys, RequestPermissionRequestSchema as yt, type RequestPermissionResponse as yu, RequestPermissionResponseSchema as yv, type RerollGezelPoppetjeRequest as yw, RerollGezelPoppetjeRequestSchema as yx, type ResidentEngineModel as yy, ResidentEngineModelSchema as yz, type Task as z, ScriptJsonInputSchema as z$, type RewriteTextResponse as z0, RewriteTextResponseSchema as z1, type RunGitRequest as z2, RunGitRequestSchema as z3, type RunGitResponse as z4, RunGitResponseSchema as z5, type RunNpxRequest as z6, RunNpxRequestSchema as z7, type RunNpxResponse as z8, RunNpxResponseSchema as z9, type SamplingBlock as zA, SamplingBlockSchema as zB, type SaveScriptSourceRequest as zC, SaveScriptSourceRequestSchema as zD, type SaveScriptSourceResponse as zE, SaveScriptSourceResponseSchema as zF, ScaProvenanceSchema as zG, type ScanFindingsRequest as zH, ScanFindingsRequestSchema as zI, type ScanFindingsResponse as zJ, ScanFindingsResponseSchema as zK, type ScheduleApprovalIntent as zL, ScheduleApprovalIntentSchema as zM, type ScheduleMaterialization as zN, ScheduleMaterializationSchema as zO, ScriptArrayOutputSchema as zP, ScriptBooleanInputSchema as zQ, ScriptBooleanOutputSchema as zR, type ScriptCapability as zS, ScriptCapabilitySchema as zT, ScriptChoiceInputSchema as zU, type ScriptDiagnostic as zV, ScriptDiagnosticSchema as zW, ScriptInputError as zX, ScriptInputFieldSchema as zY, type ScriptInputs as zZ, ScriptInputsSchema as z_, type RunPackageScriptRequest as za, RunPackageScriptRequestSchema as zb, type RunPackageScriptResponse as zc, RunPackageScriptResponseSchema as zd, RunRecordingActorSchema as ze, type RunRecordingBudget as zf, RunRecordingBudgetSchema as zg, type RunRecordingManifest as zh, RunRecordingManifestSchema as zi, RunRecordingProvenanceSchema as zj, type RunRecordingScene as zk, type RunRecordingSceneKind as zl, type RunRecordingSceneRefs as zm, RunRecordingSceneSchema as zn, RunRecordingSchema as zo, type RunRecordingScreenshot as zp, RunRecordingScreenshotSchema as zq, RunRecordingTrialSchema as zr, type RunScriptRequest as zs, RunScriptRequestSchema as zt, type RunScriptResponse as zu, RunScriptResponseSchema as zv, type RunTerminalCommandRequest as zw, RunTerminalCommandRequestSchema as zx, type RunTerminalCommandResponse as zy, RunTerminalCommandResponseSchema as zz };
|
|
77926
|
+
/** Per-turn execution hint, never a grant of filesystem or tool authority. */
|
|
77927
|
+
declare const FileTurnIntentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
77928
|
+
kind: z.ZodLiteral<"create-file">;
|
|
77929
|
+
path: z.ZodString;
|
|
77930
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
77931
|
+
kind: z.ZodLiteral<"repair-file">;
|
|
77932
|
+
path: z.ZodString;
|
|
77933
|
+
strategy: z.ZodOptional<z.ZodEnum<{
|
|
77934
|
+
rewrite: "rewrite";
|
|
77935
|
+
patch: "patch";
|
|
77936
|
+
}>>;
|
|
77937
|
+
readPaths: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
77938
|
+
mutationPath: z.ZodOptional<z.ZodString>;
|
|
77939
|
+
}, z.core.$strip>], "kind">;
|
|
77940
|
+
type FileTurnIntent = z.infer<typeof FileTurnIntentSchema>;
|
|
77941
|
+
|
|
77942
|
+
/** Inference-only coordination. Contains no paths, prompts, or executable commands. */
|
|
77943
|
+
declare const NativeCapacityCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
77944
|
+
action: z.ZodLiteral<"acquire">;
|
|
77945
|
+
id: z.ZodString;
|
|
77946
|
+
ownerPid: z.ZodNumber;
|
|
77947
|
+
label: z.ZodString;
|
|
77948
|
+
bytes: z.ZodNumber;
|
|
77949
|
+
gpuBytes: z.ZodNumber;
|
|
77950
|
+
exclusive: z.ZodDefault<z.ZodBoolean>;
|
|
77951
|
+
priority: z.ZodDefault<z.ZodEnum<{
|
|
77952
|
+
interactive: "interactive";
|
|
77953
|
+
background: "background";
|
|
77954
|
+
}>>;
|
|
77955
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
77956
|
+
action: z.ZodLiteral<"bind">;
|
|
77957
|
+
id: z.ZodString;
|
|
77958
|
+
childPid: z.ZodNumber;
|
|
77959
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
77960
|
+
action: z.ZodEnum<{
|
|
77961
|
+
status: "status";
|
|
77962
|
+
ready: "ready";
|
|
77963
|
+
release: "release";
|
|
77964
|
+
}>;
|
|
77965
|
+
id: z.ZodString;
|
|
77966
|
+
}, z.core.$strict>], "action">;
|
|
77967
|
+
type NativeCapacityCommand = z.infer<typeof NativeCapacityCommandSchema>;
|
|
77968
|
+
declare const NativeCapacityReplySchema: z.ZodObject<{
|
|
77969
|
+
state: z.ZodEnum<{
|
|
77970
|
+
waiting: "waiting";
|
|
77971
|
+
granted: "granted";
|
|
77972
|
+
released: "released";
|
|
77973
|
+
}>;
|
|
77974
|
+
releaseRequested: z.ZodBoolean;
|
|
77975
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
77976
|
+
}, z.core.$strip>;
|
|
77977
|
+
type NativeCapacityReply = z.infer<typeof NativeCapacityReplySchema>;
|
|
77978
|
+
|
|
77979
|
+
export { AdoptedTraitRecordSchema as $, type AdvanceWhen as A, SearchDocumentsRequestSchema as A$, ScanFindingsRequestSchema as A0, type ScanFindingsResponse as A1, ScanFindingsResponseSchema as A2, type ScheduleApprovalIntent as A3, ScheduleApprovalIntentSchema as A4, type ScheduleMaterialization as A5, ScheduleMaterializationSchema as A6, ScriptArrayOutputSchema as A7, ScriptBooleanInputSchema as A8, ScriptBooleanOutputSchema as A9, ScriptRefListSchema as AA, ScriptRefSchema as AB, type ScriptRun as AC, type ScriptRunCall as AD, ScriptRunCallSchema as AE, ScriptRunSchema as AF, type ScriptRunStatus as AG, ScriptRunStatusSchema as AH, type ScriptRunTrigger as AI, ScriptRunTriggerSchema as AJ, type ScriptScope as AK, ScriptScopeSchema as AL, ScriptStringInputSchema as AM, ScriptStringOutputSchema as AN, type ScriptTemplateId as AO, ScriptTemplateIdSchema as AP, type SdkTypesResponse as AQ, SdkTypesResponseSchema as AR, type SearchCodeRequest as AS, SearchCodeRequestSchema as AT, type SearchCodeResponse as AU, SearchCodeResponseSchema as AV, type SearchDocsRequest as AW, SearchDocsRequestSchema as AX, type SearchDocsResponse as AY, SearchDocsResponseSchema as AZ, type SearchDocumentsRequest as A_, type ScriptCapability as Aa, ScriptCapabilitySchema as Ab, ScriptChoiceInputSchema as Ac, type ScriptDiagnostic as Ad, ScriptDiagnosticSchema as Ae, ScriptInputError as Af, ScriptInputFieldSchema as Ag, type ScriptInputs as Ah, ScriptInputsSchema as Ai, ScriptJsonInputSchema as Aj, ScriptJsonOutputSchema as Ak, ScriptMetaSchema as Al, ScriptNameSchema as Am, ScriptNumberInputSchema as An, ScriptNumberOutputSchema as Ao, ScriptObjectOutputSchema as Ap, ScriptOutputFieldSchema as Aq, type ScriptOutputPredicate as Ar, ScriptOutputPredicateSchema as As, type ScriptOutputs as At, ScriptOutputsSchema as Au, type ScriptProvenance as Av, ScriptProvenanceSchema as Aw, type ScriptRef as Ax, ScriptRefInputSchema as Ay, type ScriptRefList as Az, type CatalogItemSummary as B, SessionSearchResultSchema as B$, type SearchDocumentsResponse as B0, SearchDocumentsResponseSchema as B1, type SearchFilesContextLine as B2, SearchFilesContextLineSchema as B3, type SearchFilesMatch as B4, SearchFilesMatchSchema as B5, type SearchFilesRequest as B6, SearchFilesRequestSchema as B7, type SearchFilesResponse as B8, SearchFilesResponseSchema as B9, type SecuritySeverityWire as BA, SecuritySourceSchema as BB, type SeedPlanState as BC, SeedPlanStateSchema as BD, type SendChannelMessageRequest as BE, SendChannelMessageRequestSchema as BF, type SendChannelMessageResponse as BG, SendChannelMessageResponseSchema as BH, type SendChatRequest as BI, SendChatRequestSchema as BJ, type SendChatResponse as BK, SendChatResponseSchema as BL, type SendToSessionRequest as BM, SendToSessionRequestSchema as BN, type SendToSessionResponse as BO, SendToSessionResponseSchema as BP, type ServiceRole as BQ, ServiceRoleSchema as BR, type SessionDebugSnapshot as BS, SessionDebugSnapshotSchema as BT, type SessionGpuTask as BU, SessionGpuTaskSchema as BV, type SessionLink as BW, SessionLinkSchema as BX, type SessionParent as BY, SessionParentSchema as BZ, type SessionSearchResult as B_, type SearchImagesRequest as Ba, SearchImagesRequestSchema as Bb, type SearchImagesResponse as Bc, SearchImagesResponseSchema as Bd, type SearchResult as Be, SearchResultSchema as Bf, type SearchSessionsRequest as Bg, SearchSessionsRequestSchema as Bh, type SearchSessionsResponse as Bi, SearchSessionsResponseSchema as Bj, type SecurityDependency as Bk, SecurityDependencySchema as Bl, SecurityFindingSchema as Bm, type SecurityFindingStatus as Bn, SecurityFindingStatusSchema as Bo, type SecurityFindingWire as Bp, type SecurityOverviewResponse as Bq, SecurityOverviewResponseSchema as Br, SecurityPolicySchema as Bs, type SecurityScanProvenance as Bt, SecurityScanProvenanceSchema as Bu, type SecurityScanRequest as Bv, SecurityScanRequestSchema as Bw, type SecurityScanResponse as Bx, SecurityScanResponseSchema as By, SecuritySeveritySchema as Bz, type ChatSession as C, type SuggestedWorkResponse as C$, type SessionTelemetry as C0, type SessionTelemetryListResponse as C1, SessionTelemetryListResponseSchema as C2, SessionTelemetrySchema as C3, type SessionTurnPhase as C4, SessionTurnPhaseSchema as C5, type SessionTurnTelemetry as C6, SessionTurnTelemetrySchema as C7, type SetTaskStatusRequest as C8, SetTaskStatusRequestSchema as C9, StepSniffSchema as CA, type StorageCategory as CB, type StorageCategoryId as CC, StorageCategoryIdSchema as CD, StorageCategorySchema as CE, type StorageClass as CF, StorageClassSchema as CG, type StorageItem as CH, StorageItemSchema as CI, type StorageJob as CJ, type StorageJobKind as CK, StorageJobKindSchema as CL, type StorageJobPhase as CM, StorageJobPhaseSchema as CN, StorageJobSchema as CO, type StorageJobStatus as CP, StorageJobStatusSchema as CQ, type StorageSummary as CR, StorageSummarySchema as CS, type StructuredOutput as CT, StructuredOutputSchema as CU, type SuggestCraftbooksResponse as CV, SuggestCraftbooksResponseSchema as CW, type SuggestedCraftbook as CX, SuggestedCraftbookSchema as CY, type SuggestedWorkItem as CZ, SuggestedWorkItemSchema as C_, type Settlement as Ca, SettlementSchema as Cb, type SharedModelMigrationCandidate as Cc, SharedModelMigrationCandidateSchema as Cd, type SharedModelMigrationCandidatesResponse as Ce, SharedModelMigrationCandidatesResponseSchema as Cf, type SharedModelMigrationRequest as Cg, SharedModelMigrationRequestSchema as Ch, type SharedModelMigrationResult as Ci, SharedModelMigrationResultSchema as Cj, type SharedModelMigrationSource as Ck, SharedModelMigrationSourceSchema as Cl, type SpawnTaskInstancesRequest as Cm, SpawnTaskInstancesRequestSchema as Cn, type StartCodeReviewRequest as Co, StartCodeReviewRequestSchema as Cp, type StartCodeReviewResponse as Cq, StartCodeReviewResponseSchema as Cr, StepDeliverableSchema as Cs, StepGateSchema as Ct, type StepGateUnion as Cu, StepGateUnionSchema as Cv, type StepPatch as Cw, type StepPosition as Cx, StepPositionSchema as Cy, type StepSniff as Cz, DeliverableKindSchema as D, type TerminalMessageEvent as D$, SuggestedWorkResponseSchema as D0, type SuggestedWorkSource as D1, SuggestedWorkSourceSchema as D2, type SuggestedWorkState as D3, SuggestedWorkStateSchema as D4, type SvgLayer as D5, SvgLayerSchema as D6, type SymbolContext as D7, SymbolContextSchema as D8, type SystemBootstrapStatus as D9, type TaskNote as DA, type TaskNoteAuthor as DB, TaskNoteAuthorSchema as DC, TaskNoteSchema as DD, type TaskPausedIntent as DE, TaskPausedIntentSchema as DF, type TaskPausedReason as DG, TaskPausedReasonSchema as DH, TaskRefSchema as DI, type TaskResponse as DJ, TaskResponseSchema as DK, TaskSchema as DL, type TaskStatus as DM, TaskStatusSchema as DN, type TaskVariation as DO, TaskVariationSchema as DP, type TaskWaitReason as DQ, TaskWaitReasonSchema as DR, type TaskWaitState as DS, TaskWaitStateSchema as DT, type TerminalEventEnvelope as DU, TerminalEventEnvelopeSchema as DV, type TerminalFileReference as DW, TerminalFileReferenceSchema as DX, type TerminalInputRequestedEvent as DY, TerminalInputRequestedEventSchema as DZ, type TerminalMessage as D_, SystemBootstrapStatusSchema as Da, SystemDiagnosticsSchema as Db, type SystemHomeInfo as Dc, SystemHomeInfoSchema as Dd, type SystemToolsetInstallEvent as De, SystemToolsetInstallEventSchema as Df, type SystemToolsetInstallPhase as Dg, type SystemToolsetInstallSnapshot as Dh, SystemToolsetInstallSnapshotSchema as Di, TOOL_CALL_DIFF_MAX_BYTES as Dj, type TaskAssignee as Dk, TaskAssigneeSchema as Dl, type TaskCraftbook as Dm, TaskCraftbookSchema as Dn, type TaskCraftbookSource as Do, TaskCraftbookSourceSchema as Dp, type TaskCraftbookStep as Dq, TaskCraftbookStepSchema as Dr, type TaskCron as Ds, type TaskCronOverlap as Dt, TaskCronOverlapSchema as Du, TaskCronSchema as Dv, type TaskFanout as Dw, TaskFanoutSchema as Dx, type TaskNightShift as Dy, TaskNightShiftSchema as Dz, ACTIVE_DIFFPACK_STATUSES as E, UNIFIED_SEARCH_RESULT_KINDS as E$, TerminalMessageEventSchema as E0, TerminalMessageSchema as E1, type TerminalOpenFileEvent as E2, TerminalOpenFileEventSchema as E3, type TerminalOutputChunkEvent as E4, TerminalOutputChunkEventSchema as E5, type TerminalRunStartedEvent as E6, TerminalRunStartedEventSchema as E7, type TerminalThread as E8, TerminalThreadSchema as E9, type ToolsetPlatform as EA, ToolsetPlatformSchema as EB, ToolsetRuntimeSchema as EC, type ToolsetVersionManifest as ED, ToolsetVersionManifestSchema as EE, type ToolsetsScope as EF, ToolsetsScopeSchema as EG, type TraceTaintRequest as EH, TraceTaintRequestSchema as EI, type TraceTaintResponse as EJ, TraceTaintResponseSchema as EK, type TraitProposal as EL, TraitProposalSchema as EM, type TransformStreamEvent as EN, TransformStreamEventSchema as EO, type TransformTextMode as EP, TransformTextModeSchema as EQ, type TransformTextRequest as ER, TransformTextRequestSchema as ES, type TrustedKnowledgeCoordinate as ET, TrustedKnowledgeCoordinateSchema as EU, type TuningAction as EV, TuningActionSchema as EW, type TuningProfileId as EX, TuningProfileIdSchema as EY, type TuningProposal as EZ, TuningProposalSchema as E_, type TerminalThreadSummary as Ea, TerminalThreadSummarySchema as Eb, type TerminalTimelineEntry as Ec, TerminalTimelineEntrySchema as Ed, type TerminalWorkingDirChangedEvent as Ee, TerminalWorkingDirChangedEventSchema as Ef, type TextLayer as Eg, TextLayerSchema as Eh, type TimelineMessage as Ei, TimelineMessageSchema as Ej, type ToolCallFormat as Ek, ToolCallFormatSchema as El, type ToolPermissionIntent as Em, ToolPermissionIntentSchema as En, type ToolsetCategory as Eo, ToolsetCategorySchema as Ep, type ToolsetConfig as Eq, type ToolsetConfigField as Er, ToolsetConfigFieldSchema as Es, ToolsetConfigSchema as Et, type ToolsetIdentity as Eu, ToolsetIdentitySchema as Ev, type ToolsetInstallApprovalIntent as Ew, ToolsetInstallApprovalIntentSchema as Ex, type ToolsetManifest as Ey, ToolsetManifestSchema as Ez, type FileContextResponse as F, VideoGenerationMetaSchema as F$, type UnifiedSearchRequest as F0, UnifiedSearchRequestSchema as F1, type UnifiedSearchResponse as F2, UnifiedSearchResponseSchema as F3, type UnifiedSearchResult as F4, type UnifiedSearchResultKind as F5, UnifiedSearchResultKindSchema as F6, UnifiedSearchResultSchema as F7, type UpdateAiAppRequest as F8, UpdateAiAppRequestSchema as F9, type UpdateQueuedMessageResponse as FA, UpdateQueuedMessageResponseSchema as FB, type UpdateTaskCraftbookRequest as FC, UpdateTaskCraftbookRequestSchema as FD, type UpdateTaskNoteRequest as FE, UpdateTaskNoteRequestSchema as FF, type UpdateTaskNoteResponse as FG, UpdateTaskNoteResponseSchema as FH, type UpdateTaskRequest as FI, UpdateTaskRequestSchema as FJ, type UpdateTaskStepRequest as FK, UpdateTaskStepRequestSchema as FL, type UpdateTaskStepResponse as FM, UpdateTaskStepResponseSchema as FN, VILLAGE_FILE_ABOUT as FO, VILLAGE_FILE_SCHEMA_VERSION as FP, type VSCodeSetupProfileOption as FQ, VSCodeSetupProfileOptionSchema as FR, type VSCodeSetupStatusResponse as FS, VSCodeSetupStatusResponseSchema as FT, type VideoAccelerator as FU, VideoAcceleratorSchema as FV, type VideoEngineStatusResponse as FW, VideoEngineStatusResponseSchema as FX, type VideoGenerationApprovalIntent as FY, VideoGenerationApprovalIntentSchema as FZ, type VideoGenerationMeta as F_, type UpdateBoekwachterIssueRequest as Fa, UpdateBoekwachterIssueRequestSchema as Fb, type UpdateBoekwachterIssueResponse as Fc, UpdateBoekwachterIssueResponseSchema as Fd, type UpdateConfigRequest as Fe, UpdateConfigRequestSchema as Ff, type UpdateCraftbookRequest as Fg, UpdateCraftbookRequestSchema as Fh, type UpdateGezelAboutRequest as Fi, UpdateGezelAboutRequestSchema as Fj, type UpdateGezelFixedFunctionDefaultsRequest as Fk, UpdateGezelFixedFunctionDefaultsRequestSchema as Fl, type UpdateGezelIconRequest as Fm, UpdateGezelIconRequestSchema as Fn, type UpdateGezelMarkdownRequest as Fo, UpdateGezelMarkdownRequestSchema as Fp, type UpdateGezelPoppetjeRequest as Fq, UpdateGezelPoppetjeRequestSchema as Fr, type UpdateGezelSettingsRequest as Fs, UpdateGezelSettingsRequestSchema as Ft, type UpdateKnowledgeCatalogRequest as Fu, UpdateKnowledgeCatalogRequestSchema as Fv, type UpdateProjectRequest as Fw, UpdateProjectRequestSchema as Fx, type UpdateQueuedMessageRequest as Fy, UpdateQueuedMessageRequestSchema as Fz, type GezelConfig as G, WorkspaceIndexMetaSchema as G$, type VideoGenerationRequest as G0, VideoGenerationRequestSchema as G1, type VideoGenerationResponse as G2, VideoGenerationResponseSchema as G3, type VideoInputSource as G4, VideoInputSourceSchema as G5, type VideoModelFamily as G6, VideoModelFamilySchema as G7, type VideoModelIdentity as G8, VideoModelIdentitySchema as G9, WORKSPACE_READ_MAX_RESULT_BYTES as GA, WORKSPACE_READ_MAX_SCAN_BYTES as GB, type WebSearchRequest as GC, WebSearchRequestSchema as GD, type WebSearchResponse as GE, WebSearchResponseSchema as GF, type WebhookChannelConfig as GG, WebhookChannelConfigSchema as GH, type WikipediaReadRequest as GI, WikipediaReadRequestSchema as GJ, type WikipediaReadResponse as GK, WikipediaReadResponseSchema as GL, type WikipediaSearchRequest as GM, WikipediaSearchRequestSchema as GN, type WipeFaceDataResponse as GO, WipeFaceDataResponseSchema as GP, type WorkspaceCommandIndex as GQ, WorkspaceCommandIndexSchema as GR, type WorkspaceCommandShapes as GS, WorkspaceCommandShapesSchema as GT, type WorkspaceEditResponse as GU, WorkspaceEditResponseSchema as GV, type WorkspaceIndexFile as GW, WorkspaceIndexFileSchema as GX, type WorkspaceIndexFilesDetailResponse as GY, WorkspaceIndexFilesDetailResponseSchema as GZ, type WorkspaceIndexMeta as G_, type VideoModelLoad as Ga, VideoModelLoadSchema as Gb, type VideoModelManifest as Gc, VideoModelManifestSchema as Gd, type VideoModelPullEvent as Ge, VideoModelPullEventSchema as Gf, type VideoModelSource as Gg, VideoModelSourceSchema as Gh, type VideoModelVersionManifest as Gi, VideoModelVersionManifestSchema as Gj, VillageAnchorSchema as Gk, type VillageDomainState as Gl, VillageDomainStateSchema as Gm, type VillageDowntown as Gn, VillageDowntownSchema as Go, type VillageFile as Gp, VillageFileSchema as Gq, type VillageJournalNode as Gr, VillageJournalNodeSchema as Gs, VillageOverrideSchema as Gt, WORKSPACE_READ_DEADLINE_MS as Gu, WORKSPACE_READ_MAX_BATCH_LINES as Gv, WORKSPACE_READ_MAX_BATCH_RESULT_BYTES as Gw, WORKSPACE_READ_MAX_BATCH_SCAN_BYTES as Gx, WORKSPACE_READ_MAX_FILES as Gy, WORKSPACE_READ_MAX_RANGE_LINES as Gz, type HistoryEvent as H, taskRef as H$, type WorkspaceIndexStatus as H0, WorkspaceIndexStatusSchema as H1, type WorkspaceInstructionIndex as H2, WorkspaceInstructionIndexSchema as H3, type WorkspaceReadFileError as H4, WorkspaceReadFileErrorSchema as H5, type WorkspaceReadFileRequest as H6, WorkspaceReadFileRequestSchema as H7, type WorkspaceReadFileResult as H8, WorkspaceReadFileResultSchema as H9, isNightShiftTask as HA, isPendingNightShiftTask as HB, isScheduleHost as HC, isSemver as HD, isValidNpmPackageName as HE, isValidNpmRegistryVersion as HF, levelForXp as HG, modelFitnessKey as HH, normalizeCodexPermissionMode as HI, normalizeScriptRefs as HJ, normalizeStepGate as HK, parseCraftbookTestSpec as HL, parseRunRecording as HM, parseTaskRef as HN, profileKind as HO, projectAllowsAmbientWork as HP, projectAllowsNightlyFixes as HQ, projectAllowsWorkspaceTables as HR, removeStepAndCleanEdges as HS, reorderStepsArray as HT, requiredOutputMediaForGate as HU, resolveProfileChain as HV, resolveProjectTypeId as HW, resolveSteps as HX, slugifyStepId as HY, spawnsChildren as HZ, stepInsertionIndex as H_, type WorkspaceReadFileSuccess as Ha, WorkspaceReadFileSuccessSchema as Hb, type WorkspaceSkillIndex as Hc, WorkspaceSkillIndexSchema as Hd, type WriteDocumentRequest as He, WriteDocumentRequestSchema as Hf, type WritePromptDraftContentRequest as Hg, WritePromptDraftContentRequestSchema as Hh, type WritePromptDraftContentResponse as Hi, WritePromptDraftContentResponseSchema as Hj, type XtcSamplerConfig as Hk, XtcSamplerSchema as Hl, applyStepPatch as Hm, assertCraftbookGraph as Hn, compareSemver as Ho, craftbookRequirementsMet as Hp, credentialCapabilityName as Hq, formatDiffpackRef as Hr, formatNpmRegistrySpec as Hs, formatReviewProvenance as Ht, gateEdgeTargets as Hu, isActiveDiffpackStatus as Hv, isCredentialCapability as Hw, isDraftTask as Hx, isKnownProfileId as Hy, isLegacyGateSpec as Hz, AMBIENT_DASHBOARD_MAX_DIMENSION as I, tierAtLeast as I0, tierRank as I1, uniqueStepId as I2, unmetConnectors as I3, unmetCraftbookRequirements as I4, unmetToolsets as I5, validateCraftbookFanout as I6, validateCraftbookGraph as I7, validateCraftbookScriptRefs as I8, validateScriptInput as I9, xpForLevel as Ia, AMBIENT_DASHBOARD_MAX_PIXELS as J, AMBIENT_DASHBOARD_MIN_DIMENSION as K, AUDIO_TRANSCRIBE_PROMPT_MAX_CHARS as L, type MapDistrict as M, type NewCraftbookStep as N, type Outcome as O, type Project as P, type AcceptGrowthProposalRequest as Q, type RunRecordingActor as R, type ScriptInputField as S, type ToolsetRuntime as T, AcceptGrowthProposalRequestSchema as U, type VillageAnchor as V, type ActiveImagePull as W, ActiveImagePullSchema as X, type ActiveVideoPull as Y, ActiveVideoPullSchema as Z, type AdoptedTraitRecord as _, type RunRecordingTrial as a, type AskQuestionRequest as a$, AdvanceWhenSchema as a0, type AiAppAppliedProject as a1, AiAppAppliedProjectSchema as a2, type AiAppDetail as a3, AiAppDetailSchema as a4, type AiAppStatus as a5, AiAppStatusSchema as a6, type AmbientDashboardDisplayTarget as a7, AmbientDashboardDisplayTargetSchema as a8, type AmbientDashboardResolution as a9, AppendTaskNoteRequestSchema as aA, type AppendTaskNoteResponse as aB, AppendTaskNoteResponseSchema as aC, type AppliedProjectType as aD, AppliedProjectTypeSchema as aE, type AppliedSeedRecord as aF, AppliedSeedRecordSchema as aG, type ApplyDiffpackRequest as aH, ApplyDiffpackRequestSchema as aI, type ApplyDiffpackResponse as aJ, ApplyDiffpackResponseSchema as aK, type ApplyPatchToProjectWorkspaceFileRequest as aL, ApplyPatchToProjectWorkspaceFileRequestSchema as aM, type ApplyProjectTypeRequest as aN, ApplyProjectTypeRequestSchema as aO, type ArchiveEntry as aP, ArchiveEntrySchema as aQ, type ArchiveExtractRequest as aR, ArchiveExtractRequestSchema as aS, type ArchiveExtractResponse as aT, ArchiveExtractResponseSchema as aU, type ArchiveListRequest as aV, ArchiveListRequestSchema as aW, type ArchiveListResponse as aX, ArchiveListResponseSchema as aY, type ArgSpec as aZ, ArgSpecSchema as a_, AmbientDashboardResolutionSchema as aa, type AmbientDashboardState as ab, AmbientDashboardStateSchema as ac, type AmbientDashboardStatusResponse as ad, AmbientDashboardStatusResponseSchema as ae, type AmbientDashboardStyle as af, AmbientDashboardStyleSchema as ag, type AmbientDashboardTheme as ah, AmbientDashboardThemeSchema as ai, type AmbientDashboardThemeSummary as aj, AmbientDashboardThemeSummarySchema as ak, type AnswerQuestionRequest as al, AnswerQuestionRequestSchema as am, type AppServeChatSendRequest as an, AppServeChatSendRequestSchema as ao, type AppServeRotateKeyRequest as ap, AppServeRotateKeyRequestSchema as aq, type AppServeSiteInfo as ar, AppServeSiteInfoSchema as as, type AppServeSiteStatus as at, AppServeSiteStatusSchema as au, type AppServeStartRequest as av, AppServeStartRequestSchema as aw, type AppServeStartResponse as ax, AppServeStartResponseSchema as ay, type AppendTaskNoteRequest as az, type RunRecordingProvenance as b, CRAFTBOOK_TEST_FILENAME as b$, AskQuestionRequestSchema as b0, type AskQuestionResponse as b1, AskQuestionResponseSchema as b2, type AudioCatalogModel as b3, AudioCatalogModelSchema as b4, type AudioEngineHealth as b5, AudioEngineHealthSchema as b6, type AudioEngineStatusResponse as b7, AudioEngineStatusResponseSchema as b8, type AudioModelPullEvent as b9, BackupManifestSchema as bA, type BackupPlan as bB, type BackupPlanItem as bC, BackupPlanItemSchema as bD, BackupPlanSchema as bE, type BackupRequest as bF, BackupRequestSchema as bG, type BehaviorEntry as bH, BehaviorEntrySchema as bI, type BehaviorId as bJ, BehaviorIdSchema as bK, type BinaryDocumentCheck as bL, BinaryDocumentCheckSchema as bM, type BoekwachterIssue as bN, type BoekwachterIssueDismissalReason as bO, BoekwachterIssueDismissalReasonSchema as bP, BoekwachterIssueSchema as bQ, type BoekwachterIssueStatus as bR, BoekwachterIssueStatusSchema as bS, CANONICAL_PROFILES as bT, CRAFTBOOK_RECORDING_DIRNAME as bU, CRAFTBOOK_RECORDING_FILENAME as bV, CRAFTBOOK_RECORDING_POSTER as bW, CRAFTBOOK_ROLE_META as bX, CRAFTBOOK_SCRIPTS_MAX_COUNT as bY, CRAFTBOOK_SCRIPTS_TOTAL_MAX_BYTES as bZ, CRAFTBOOK_SCRIPT_MAX_BYTES as b_, AudioModelPullEventSchema as ba, type AudioSynthesizeChunk as bb, AudioSynthesizeChunkSchema as bc, type AudioSynthesizeEvent as bd, AudioSynthesizeEventSchema as be, type AudioSynthesizeMeta as bf, AudioSynthesizeMetaSchema as bg, type AudioSynthesizeProgress as bh, AudioSynthesizeProgressSchema as bi, type AudioSynthesizeRequest as bj, AudioSynthesizeRequestSchema as bk, type AudioSynthesizeResponse as bl, AudioSynthesizeResponseSchema as bm, type AudioTranscribeRequest as bn, AudioTranscribeRequestSchema as bo, type AudioTranscribeResponse as bp, AudioTranscribeResponseSchema as bq, type AudioTranscribeSegment as br, AudioTranscribeSegmentSchema as bs, type AudioVoice as bt, AudioVoiceSchema as bu, BACKUP_MANIFEST_KIND as bv, BACKUP_SCHEMA_VERSION as bw, type BackupItemKind as bx, BackupItemKindSchema as by, type BackupManifest as bz, type RunRecording as c, type CodeSymbol as c$, CRAFTBOOK_TEST_SCHEMA_VERSION as c0, type CancelCodeReviewResponse as c1, CancelCodeReviewResponseSchema as c2, type CatalogItemDetail as c3, CatalogItemDetailSchema as c4, type CatalogItemIdentity as c5, CatalogItemIdentitySchema as c6, type CatalogItemManifest as c7, CatalogItemManifestSchema as c8, CatalogItemSummarySchema as c9, type ChatModelTuningBase as cA, ChatModelTuningBaseSchema as cB, ChatModelTuningSchema as cC, type ChatModelVersionManifest as cD, ChatModelVersionManifestSchema as cE, ChatSessionSchema as cF, type ChatSessionSummary as cG, ChatSessionSummarySchema as cH, ClaudePermissionModeSchema as cI, type ClaudeUserQuestionIntent as cJ, ClaudeUserQuestionIntentSchema as cK, type ClaudeUserQuestionOption as cL, ClaudeUserQuestionOptionSchema as cM, type CleanupRequest as cN, CleanupRequestSchema as cO, type CodeReview as cP, type CodeReviewKind as cQ, CodeReviewKindSchema as cR, type CodeReviewManifest as cS, CodeReviewManifestSchema as cT, type CodeReviewRecord as cU, CodeReviewRecordSchema as cV, type CodeReviewResponse as cW, CodeReviewResponseSchema as cX, CodeReviewSchema as cY, type CodeReviewStatus as cZ, CodeReviewStatusSchema as c_, type CatalogItemVersionInfo as ca, CatalogItemVersionInfoSchema as cb, type CatalogKind as cc, CatalogKindSchema as cd, type ChannelName as ce, ChannelNameSchema as cf, type ChannelStatus as cg, ChannelStatusSchema as ch, type ChannelsConfig as ci, ChannelsConfigSchema as cj, type ChatHistoryResponse as ck, ChatHistoryResponseSchema as cl, type ChatModelCategory as cm, ChatModelCategorySchema as cn, type ChatModelDs4Source as co, ChatModelDs4SourceSchema as cp, type ChatModelIdentity as cq, ChatModelIdentitySchema as cr, type ChatModelLlamaCppSource as cs, ChatModelLlamaCppSourceSchema as ct, ChatModelManifestSchema as cu, type ChatModelMlxSource as cv, ChatModelMlxSourceSchema as cw, type ChatModelOllamaSource as cx, ChatModelOllamaSourceSchema as cy, type ChatModelTuning as cz, type Rect as d, type CraftbookRequirementContext as d$, CodeSymbolSchema as d0, type CodexPermissionModeCompat as d1, CodexPermissionModeCompatSchema as d2, CodexPermissionModeSchema as d3, type CodexSetupModelOption as d4, CodexSetupModelOptionSchema as d5, type CodexSetupState as d6, CodexSetupStateSchema as d7, type CodexSetupStatusResponse as d8, CodexSetupStatusResponseSchema as d9, type ConnectorTypeManifest as dA, ConnectorTypeManifestSchema as dB, type ConnectorTypeVersionManifest as dC, ConnectorTypeVersionManifestSchema as dD, type CopilotAvailability as dE, CopilotAvailabilitySchema as dF, type CopilotLoginEvent as dG, CopilotLoginEventSchema as dH, type CopyArtifactToWorkspaceRequest as dI, CopyArtifactToWorkspaceRequestSchema as dJ, type CopyArtifactToWorkspaceResponse as dK, CopyArtifactToWorkspaceResponseSchema as dL, type CosmeticProposal as dM, CosmeticProposalSchema as dN, type CraftbookBasedOn as dO, CraftbookBasedOnSchema as dP, type CraftbookBranch as dQ, CraftbookBranchSchema as dR, type CraftbookCommandNeed as dS, CraftbookCommandNeedSchema as dT, type CraftbookConnectorNeed as dU, CraftbookConnectorNeedSchema as dV, type CraftbookRecommendation as dW, CraftbookRecommendationSchema as dX, type CraftbookRecording as dY, CraftbookRecordingSchema as dZ, type CraftbookRequirement as d_, type CommandApprovalInputFile as da, CommandApprovalInputFileSchema as db, type CommandApprovalIntent as dc, CommandApprovalIntentSchema as dd, type CommandApprovalScope as de, CommandApprovalScopeSchema as df, type CommandShape as dg, CommandShapeSchema as dh, CompassRegionSchema as di, type CompleteStepGateInfo as dj, CompleteStepGateInfoSchema as dk, type CompleteStepRequest as dl, CompleteStepRequestSchema as dm, type CompleteStepResponse as dn, CompleteStepResponseSchema as dp, type ConfigureCodexRequest as dq, ConfigureCodexRequestSchema as dr, type ConfigureOpenCodeRequest as ds, ConfigureOpenCodeRequestSchema as dt, type ConfigurePiRequest as du, ConfigurePiRequestSchema as dv, type ConfigureVSCodeRequest as dw, ConfigureVSCodeRequestSchema as dx, type ConnectorTypeIdentity as dy, ConnectorTypeIdentitySchema as dz, type VillageOverride as e, type CreatePreviewCapabilityResponse as e$, CraftbookRequirementSchema as e0, type CraftbookResponse as e1, CraftbookResponseSchema as e2, type CraftbookRole as e3, CraftbookRoleSchema as e4, type CraftbookRunModes as e5, CraftbookRunModesSchema as e6, CraftbookSchema as e7, type CraftbookScripts as e8, CraftbookScriptsSchema as e9, CraftbookTestFixtureFileSchema as eA, type CraftbookTestHistoryExpectation as eB, CraftbookTestHistoryExpectationSchema as eC, type CraftbookTestMockExpectation as eD, CraftbookTestMockExpectationSchema as eE, type CraftbookTestRubric as eF, CraftbookTestRubricSchema as eG, type CraftbookTestSetup as eH, CraftbookTestSetupSchema as eI, type CraftbookTestSpec as eJ, CraftbookTestSpecSchema as eK, type CraftbookTestSuccess as eL, CraftbookTestSuccessSchema as eM, type CraftbookTestWorker as eN, CraftbookTestWorkerSchema as eO, type CraftbookToolsetNeed as eP, CraftbookToolsetNeedSchema as eQ, type CreateChatSessionRequest as eR, CreateChatSessionRequestSchema as eS, type CreateCraftbookRequest as eT, CreateCraftbookRequestSchema as eU, type CreateDocumentFolderRequest as eV, CreateDocumentFolderRequestSchema as eW, type CreateGezelRequest as eX, CreateGezelRequestSchema as eY, type CreatePreviewCapabilityRequest as eZ, CreatePreviewCapabilityRequestSchema as e_, type CraftbookSpawn as ea, CraftbookSpawnSchema as eb, type CraftbookStepInput as ec, CraftbookStepInputSchema as ed, type CraftbookStepOutputMedium as ee, CraftbookStepOutputMediumSchema as ef, CraftbookStepSchema as eg, type CraftbookStepToolPolicy as eh, CraftbookStepToolPolicySchema as ei, type CraftbookStepWritableOutputMedium as ej, CraftbookStepWritableOutputMediumSchema as ek, type CraftbookSuggestion as el, CraftbookSuggestionSchema as em, type CraftbookSummary as en, CraftbookSummarySchema as eo, type CraftbookTemplateIdentity as ep, CraftbookTemplateIdentitySchema as eq, type CraftbookTemplateManifest as er, CraftbookTemplateManifestSchema as es, type CraftbookTemplateVersionManifest as et, CraftbookTemplateVersionManifestSchema as eu, type CraftbookTestCheck as ev, CraftbookTestCheckSchema as ew, type CraftbookTestDeliverable as ex, CraftbookTestDeliverableSchema as ey, type CraftbookTestFixtureFile as ez, type MapStreet as f, DiffpackStatusSchema as f$, CreatePreviewCapabilityResponseSchema as f0, type CreateProjectRequest as f1, CreateProjectRequestSchema as f2, type CreatePromptDraftRequest as f3, CreatePromptDraftRequestSchema as f4, type CreateScriptRequest as f5, CreateScriptRequestSchema as f6, type CreateScriptResponse as f7, CreateScriptResponseSchema as f8, type CreateTaskRequest as f9, DescribeTableRequestSchema as fA, type DescribeTableResponse as fB, DescribeTableResponseSchema as fC, type DeviceSafetyPolicyConfig as fD, DeviceSafetyPolicySchema as fE, type DiffFilesRequest as fF, DiffFilesRequestSchema as fG, type DiffFilesResponse as fH, DiffFilesResponseSchema as fI, type Diffpack as fJ, type DiffpackFile as fK, type DiffpackFileChange as fL, DiffpackFileChangeSchema as fM, DiffpackFileSchema as fN, DiffpackIdSchema as fO, type DiffpackManifest as fP, DiffpackManifestSchema as fQ, type DiffpackOrigin as fR, DiffpackOriginSchema as fS, type DiffpackOverlap as fT, DiffpackOverlapSchema as fU, type DiffpackRecord as fV, DiffpackRecordSchema as fW, type DiffpackResponse as fX, DiffpackResponseSchema as fY, DiffpackSchema as fZ, type DiffpackStatus as f_, CreateTaskRequestSchema as fa, type CreateTypedProjectRequest as fb, CreateTypedProjectRequestSchema as fc, type CreateTypedProjectResponse as fd, CreateTypedProjectResponseSchema as fe, CredentialCapabilitySchema as ff, type CustomMcpImportWarning as fg, CustomMcpImportWarningSchema as fh, DEFAULT_LOCAL_ENGINE_IDLE_TIMEOUT_MS as fi, DEFAULT_PROMPT_DRAFT_KEEP_SENT_DAYS as fj, DEFAULT_TUNING_PROFILE_ID as fk, type DeclineGrowthLevelUpRequest as fl, DeclineGrowthLevelUpRequestSchema as fm, type DeclinedProposalRecord as fn, DeclinedProposalRecordSchema as fo, type DelegateSecurityFindingRequest as fp, DelegateSecurityFindingRequestSchema as fq, type DelegateSecurityFindingResponse as fr, DelegateSecurityFindingResponseSchema as fs, type DeletePromptDraftResponse as ft, DeletePromptDraftResponseSchema as fu, type DescribeFolderRequest as fv, DescribeFolderRequestSchema as fw, type DescribeFolderResponse as fx, DescribeFolderResponseSchema as fy, type DescribeTableRequest as fz, type MapPlaza as g, FetchRepoRequestSchema as g$, type DiffpackSummary as g0, DiffpackSummarySchema as g1, type DisableSuggestedWorkRequest as g2, DisableSuggestedWorkRequestSchema as g3, type DiscoveredCommand as g4, DiscoveredCommandSchema as g5, type DiscoveredInstruction as g6, DiscoveredInstructionSchema as g7, type DiscoveredSkill as g8, DiscoveredSkillSchema as g9, type EnableSuggestedWorkRequest as gA, EnableSuggestedWorkRequestSchema as gB, type EngineConfig as gC, EngineConfigSchema as gD, type EnsureGezelRequest as gE, EnsureGezelRequestSchema as gF, type EnsureGezelResponse as gG, EnsureGezelResponseSchema as gH, type Entity as gI, type EntityId as gJ, EntityIdSchema as gK, EntitySchema as gL, type ErrorResponse as gM, ErrorResponseSchema as gN, type EvalHints as gO, EvalHintsSchema as gP, type ExpectedDeliverable as gQ, ExpectedDeliverableSchema as gR, type ExternalFolders as gS, ExternalFoldersSchema as gT, type ExternalRequestDiagnostics as gU, ExternalRequestDiagnosticsSchema as gV, type FetchDiffRequest as gW, FetchDiffRequestSchema as gX, type FetchDiffResponse as gY, FetchDiffResponseSchema as gZ, type FetchRepoRequest as g_, type DismissDiffpackResponse as ga, DismissDiffpackResponseSchema as gb, type DismissSuggestedWorkRequest as gc, DismissSuggestedWorkRequestSchema as gd, type DocumentExportOptions as ge, DocumentExportOptionsSchema as gf, type DocumentMediaExportRequest as gg, DocumentMediaExportRequestSchema as gh, type DocumentMediaExportSource as gi, DocumentMediaExportSourceSchema as gj, type DocumentSearchResult as gk, DocumentSearchResultSchema as gl, type DraftScriptRequest as gm, DraftScriptRequestSchema as gn, type DraftScriptResponse as go, DraftScriptResponseSchema as gp, type DriveIndexEnrichmentRequest as gq, DriveIndexEnrichmentRequestSchema as gr, type DriveIndexEnrichmentResponse as gs, DriveIndexEnrichmentResponseSchema as gt, type DrySamplerConfig as gu, DrySamplerSchema as gv, type DuplicatePromptDraftRequest as gw, DuplicatePromptDraftRequestSchema as gx, type EmbeddingsHealth as gy, EmbeddingsHealthSchema as gz, type MapBuilding as h, GEZAPP_SOURCE_MANIFEST_FILENAME as h$, type FetchRepoResponse as h0, FetchRepoResponseSchema as h1, type FetchUrlRequest as h2, FetchUrlRequestSchema as h3, type FetchUrlResponse as h4, FetchUrlResponseSchema as h5, type FileContextFinding as h6, FileContextFindingSchema as h7, type FileContextImporter as h8, FileContextImporterSchema as h9, FindEntityResponseSchema as hA, type FindFilesRequest as hB, FindFilesRequestSchema as hC, type FindFilesResponse as hD, FindFilesResponseSchema as hE, type FindReferencesRequest as hF, FindReferencesRequestSchema as hG, type FindReferencesResponse as hH, FindReferencesResponseSchema as hI, type FindSimilarImagesRequest as hJ, FindSimilarImagesRequestSchema as hK, type FindSimilarImagesResponse as hL, FindSimilarImagesResponseSchema as hM, type FindSymbolRequest as hN, FindSymbolRequestSchema as hO, type FindSymbolResponse as hP, FindSymbolResponseSchema as hQ, type FitnessCheck as hR, FitnessCheckSchema as hS, type FixBoekwachterIssueRequest as hT, FixBoekwachterIssueRequestSchema as hU, type FixBoekwachterIssueResponse as hV, FixBoekwachterIssueResponseSchema as hW, type FlagSpec as hX, FlagSpecSchema as hY, GATE_DEFAULT_MAX_ATTEMPTS as hZ, GATE_MAX_PROGRESS_ATTEMPTS as h_, type FileContextRequest as ha, FileContextRequestSchema as hb, FileContextResponseSchema as hc, type FileMapRequest as hd, FileMapRequestSchema as he, type FileMapResponse as hf, FileMapResponseSchema as hg, type FileMapScope as hh, FileMapScopeSchema as hi, type FileReviewIssue as hj, FileReviewIssueSchema as hk, type FileReviewIssueSeverity as hl, FileReviewIssueSeveritySchema as hm, type FileReviewReply as hn, FileReviewReplySchema as ho, type FileReviewRequest as hp, FileReviewRequestSchema as hq, type FileReviewResponse as hr, FileReviewResponseSchema as hs, type FileReviewWire as ht, FileReviewWireSchema as hu, type FileTurnIntent as hv, FileTurnIntentSchema as hw, type FindEntityRequest as hx, FindEntityRequestSchema as hy, type FindEntityResponse as hz, type CompassRegion as i, type GezmodelImportProgress as i$, type GateAttemptRecord as i0, GateCheckSchema as i1, GateScriptRefSchema as i2, type GateScriptResult as i3, GateScriptResultSchema as i4, type GateSpec as i5, GateSpecSchema as i6, type GenerateGezelAboutRequest as i7, GenerateGezelAboutRequestSchema as i8, type GenerateGezelIconRequest as i9, GezappRegistrySchema as iA, type GezappSourceManifest as iB, GezappSourceManifestSchema as iC, GezelConfigSchema as iD, type GezelGrowthResponse as iE, GezelGrowthResponseSchema as iF, type GezelGrowthState as iG, GezelGrowthStateSchema as iH, type GezelGrowthSummary as iI, GezelGrowthSummarySchema as iJ, GezelIconHistoryEntrySchema as iK, type GezelIconHistoryResponse as iL, GezelIconHistoryResponseSchema as iM, type GezelResponse as iN, GezelResponseSchema as iO, type GezelTemplateIdentity as iP, GezelTemplateIdentitySchema as iQ, type GezelTemplateManifest as iR, GezelTemplateManifestSchema as iS, type GezelTemplateVersionManifest as iT, GezelTemplateVersionManifestSchema as iU, type GezmodelBundleManifest as iV, GezmodelBundleManifestSchema as iW, type GezmodelEngine as iX, GezmodelEngineSchema as iY, type GezmodelFile as iZ, GezmodelFileSchema as i_, GenerateGezelIconRequestSchema as ia, type GetBoekwachterIssueRequest as ib, GetBoekwachterIssueRequestSchema as ic, type GetBoekwachterIssueResponse as id, GetBoekwachterIssueResponseSchema as ie, type GetScriptSourceResponse as ig, GetScriptSourceResponseSchema as ih, type GezappDependency as ii, type GezappDependencyKind as ij, GezappDependencyKindSchema as ik, GezappDependencySchema as il, type GezappEmbeddedKind as im, GezappEmbeddedKindSchema as io, type GezappEntry as ip, GezappEntrySchema as iq, type GezappInstallReceipt as ir, GezappInstallReceiptSchema as is, type GezappItem as it, GezappItemSchema as iu, type GezappManifest as iv, GezappManifestSchema as iw, type GezappRegistry as ix, type GezappRegistryEntry as iy, GezappRegistryEntrySchema as iz, type ScriptOutputField as j, type GitHubIdentity as j$, type GezmodelImportReview as j0, GezmodelImportReviewSchema as j1, type GezmodelLicense as j2, GezmodelLicenseSchema as j3, type GildeUpdateCheckOutcome as j4, GildeUpdateCheckOutcomeSchema as j5, type GildeUpdateCheckResult as j6, GildeUpdateCheckResultSchema as j7, type GildeUpdateStatusResponse as j8, GildeUpdateStatusResponseSchema as j9, type GitConflictFile as jA, GitConflictFileSchema as jB, type GitConflictKind as jC, GitConflictKindSchema as jD, type GitConflictVersionsResponse as jE, GitConflictVersionsResponseSchema as jF, type GitDiscardRequest as jG, GitDiscardRequestSchema as jH, type GitDiscardResponse as jI, GitDiscardResponseSchema as jJ, type GitFetchResponse as jK, GitFetchResponseSchema as jL, type GitFileDiffResponse as jM, GitFileDiffResponseSchema as jN, type GitHubAuthMeta as jO, GitHubAuthMetaSchema as jP, type GitHubCheckStatusResponse as jQ, GitHubCheckStatusResponseSchema as jR, type GitHubCreateCommentRequest as jS, GitHubCreateCommentRequestSchema as jT, type GitHubCreateCommentResponse as jU, GitHubCreateCommentResponseSchema as jV, type GitHubCreatePullRequest as jW, GitHubCreatePullRequestSchema as jX, type GitHubCreatePullResponse as jY, GitHubCreatePullResponseSchema as jZ, type GitHubCredentialSource as j_, type GitAbandonMergeResponse as ja, GitAbandonMergeResponseSchema as jb, type GitAiMergeRequest as jc, GitAiMergeRequestSchema as jd, type GitAiMergeResponse as je, GitAiMergeResponseSchema as jf, type GitBranchSwitchRequest as jg, GitBranchSwitchRequestSchema as jh, type GitBranchesResponse as ji, GitBranchesResponseSchema as jj, type GitChangeKind as jk, GitChangeKindSchema as jl, type GitChangesResponse as jm, GitChangesResponseSchema as jn, type GitCloneResponse as jo, GitCloneResponseSchema as jp, type GitCommitDetailResponse as jq, GitCommitDetailResponseSchema as jr, type GitCommitRequest as js, GitCommitRequestSchema as jt, type GitCommitResponse as ju, GitCommitResponseSchema as jv, type GitCompleteMergeRequest as jw, GitCompleteMergeRequestSchema as jx, type GitCompleteMergeResponse as jy, GitCompleteMergeResponseSchema as jz, type ScriptMeta as k, type GithubChangeKind as k$, type GitHubIdentityResponse as k0, GitHubIdentityResponseSchema as k1, GitHubIdentitySchema as k2, type GitHubLoginPollRequest as k3, GitHubLoginPollRequestSchema as k4, type GitHubLoginPollResponse as k5, GitHubLoginPollResponseSchema as k6, type GitHubLoginStartResponse as k7, GitHubLoginStartResponseSchema as k8, type GitHubPullComment as k9, GitPushResponseSchema as kA, type GitResolveConflictRequest as kB, GitResolveConflictRequestSchema as kC, type GitResolveConflictResponse as kD, GitResolveConflictResponseSchema as kE, type GitStatusResponse as kF, GitStatusResponseSchema as kG, type GitSuggestMessageResponse as kH, GitSuggestMessageResponseSchema as kI, type GitSyncResponse as kJ, GitSyncResponseSchema as kK, type GitSyncState as kL, GitSyncStateSchema as kM, type GitWorkingChange as kN, GitWorkingChangeSchema as kO, type GithubAbandonMergeResponse as kP, GithubAbandonMergeResponseSchema as kQ, type GithubAiMergeRequest as kR, GithubAiMergeRequestSchema as kS, type GithubAiMergeResponse as kT, GithubAiMergeResponseSchema as kU, type GithubAuthMeta as kV, GithubAuthMetaSchema as kW, type GithubBranchSwitchRequest as kX, GithubBranchSwitchRequestSchema as kY, type GithubBranchesResponse as kZ, GithubBranchesResponseSchema as k_, GitHubPullCommentSchema as ka, type GitHubPullDetail as kb, GitHubPullDetailSchema as kc, type GitHubPullDiffResponse as kd, GitHubPullDiffResponseSchema as ke, type GitHubPullFile as kf, GitHubPullFileSchema as kg, type GitHubPullSummary as kh, GitHubPullSummarySchema as ki, type GitHubRepoPreviewRequest as kj, GitHubRepoPreviewRequestSchema as kk, type GitHubRepoPreviewResponse as kl, GitHubRepoPreviewResponseSchema as km, type GitHubRepoSummary as kn, GitHubRepoSummarySchema as ko, type GitHubReposResponse as kp, GitHubReposResponseSchema as kq, type GitHubWorkflowRun as kr, GitHubWorkflowRunSchema as ks, type GitLogEntry as kt, GitLogEntrySchema as ku, type GitLogResponse as kv, GitLogResponseSchema as kw, type GitMergeStateResponse as kx, GitMergeStateResponseSchema as ky, type GitPushResponse as kz, type SecurityPolicy as l, GithubPullFileSchema as l$, GithubChangeKindSchema as l0, type GithubChangesResponse as l1, GithubChangesResponseSchema as l2, type GithubCheckStatusResponse as l3, GithubCheckStatusResponseSchema as l4, type GithubCloneResponse as l5, GithubCloneResponseSchema as l6, type GithubCommitDetailResponse as l7, GithubCommitDetailResponseSchema as l8, type GithubCommitRequest as l9, type GithubFetchResponse as lA, GithubFetchResponseSchema as lB, type GithubFileDiffResponse as lC, GithubFileDiffResponseSchema as lD, type GithubIdentity as lE, type GithubIdentityResponse as lF, GithubIdentityResponseSchema as lG, GithubIdentitySchema as lH, type GithubLogEntry as lI, GithubLogEntrySchema as lJ, type GithubLogResponse as lK, GithubLogResponseSchema as lL, type GithubLoginPollRequest as lM, GithubLoginPollRequestSchema as lN, type GithubLoginPollResponse as lO, GithubLoginPollResponseSchema as lP, type GithubLoginStartResponse as lQ, GithubLoginStartResponseSchema as lR, type GithubMergeStateResponse as lS, GithubMergeStateResponseSchema as lT, type GithubPullComment as lU, GithubPullCommentSchema as lV, type GithubPullDetail as lW, GithubPullDetailSchema as lX, type GithubPullDiffResponse as lY, GithubPullDiffResponseSchema as lZ, type GithubPullFile as l_, GithubCommitRequestSchema as la, type GithubCommitResponse as lb, GithubCommitResponseSchema as lc, type GithubCompleteMergeRequest as ld, GithubCompleteMergeRequestSchema as le, type GithubCompleteMergeResponse as lf, GithubCompleteMergeResponseSchema as lg, type GithubConflictFile as lh, GithubConflictFileSchema as li, type GithubConflictKind as lj, GithubConflictKindSchema as lk, type GithubConflictVersionsResponse as ll, GithubConflictVersionsResponseSchema as lm, type GithubCreateCommentRequest as ln, GithubCreateCommentRequestSchema as lo, type GithubCreateCommentResponse as lp, GithubCreateCommentResponseSchema as lq, type GithubCreatePullRequest as lr, GithubCreatePullRequestSchema as ls, type GithubCreatePullResponse as lt, GithubCreatePullResponseSchema as lu, type GithubCredentialSource as lv, type GithubDiscardRequest as lw, GithubDiscardRequestSchema as lx, type GithubDiscardResponse as ly, GithubDiscardResponseSchema as lz, type ProjectManagedWorkspaceWritePolicy as m, HandboekTocSubcategorySchema as m$, type GithubPullSummary as m0, GithubPullSummarySchema as m1, type GithubPushResponse as m2, GithubPushResponseSchema as m3, type GithubRepoPreviewRequest as m4, GithubRepoPreviewRequestSchema as m5, type GithubRepoPreviewResponse as m6, GithubRepoPreviewResponseSchema as m7, type GithubRepoSummary as m8, GithubRepoSummarySchema as m9, type GrowthEvidence as mA, GrowthEvidenceSchema as mB, type GrowthProposal as mC, GrowthProposalSchema as mD, type GrowthSignals as mE, GrowthSignalsSchema as mF, type HandboekArea as mG, HandboekAreaSchema as mH, type HandboekArticle as mI, HandboekArticleSchema as mJ, type HandboekFigure as mK, HandboekFigureSchema as mL, type HandboekHowDoIResponse as mM, HandboekHowDoIResponseSchema as mN, type HandboekNarrationResponse as mO, HandboekNarrationResponseSchema as mP, type HandboekNarrationSegment as mQ, HandboekNarrationSegmentSchema as mR, type HandboekRenderMode as mS, HandboekRenderModeSchema as mT, type HandboekToc as mU, type HandboekTocArea as mV, HandboekTocAreaSchema as mW, type HandboekTocEntry as mX, HandboekTocEntrySchema as mY, HandboekTocSchema as mZ, type HandboekTocSubcategory as m_, type GithubReposResponse as ma, GithubReposResponseSchema as mb, type GithubResolveConflictRequest as mc, GithubResolveConflictRequestSchema as md, type GithubResolveConflictResponse as me, GithubResolveConflictResponseSchema as mf, type GithubStatusResponse as mg, GithubStatusResponseSchema as mh, type GithubSuggestMessageResponse as mi, GithubSuggestMessageResponseSchema as mj, type GithubSyncResponse as mk, GithubSyncResponseSchema as ml, type GithubSyncState as mm, GithubSyncStateSchema as mn, type GithubWorkflowRun as mo, GithubWorkflowRunSchema as mp, type GithubWorkingChange as mq, GithubWorkingChangeSchema as mr, type GpuProcessMemory as ms, GpuProcessMemorySchema as mt, type GpuProcessOwner as mu, GpuProcessOwnerSchema as mv, type GrepArtifactRequest as mw, GrepArtifactRequestSchema as mx, type GrepArtifactResponse as my, GrepArtifactResponseSchema as mz, type CodexPermissionMode as n, type ImportCustomMcpConfigRequest as n$, type HealthResponse as n0, HealthResponseSchema as n1, type HistoryEntry as n2, HistoryEntrySchema as n3, HistoryEventEntrySchema as n4, type HistoryEventKind as n5, HistoryEventKindSchema as n6, HistoryEventSchema as n7, type HistoryFilter as n8, HistoryFilterSchema as n9, ImageInputSourceSchema as nA, type ImageLayer as nB, ImageLayerSchema as nC, type ImageModelAuxiliaryFile as nD, ImageModelAuxiliaryFileSchema as nE, type ImageModelAuxiliaryRole as nF, ImageModelAuxiliaryRoleSchema as nG, type ImageModelCategory as nH, ImageModelCategorySchema as nI, type ImageModelHardwareTier as nJ, ImageModelHardwareTierSchema as nK, type ImageModelIdentity as nL, ImageModelIdentitySchema as nM, type ImageModelManifest as nN, ImageModelManifestSchema as nO, type ImageModelPullEvent as nP, ImageModelPullEventSchema as nQ, type ImageModelVersionManifest as nR, ImageModelVersionManifestSchema as nS, type ImageRecognition as nT, ImageRecognitionSchema as nU, type ImageRegion as nV, ImageRegionSchema as nW, type ImageStaticMeta as nX, ImageStaticMetaSchema as nY, type ImportAiAppResult as nZ, ImportAiAppResultSchema as n_, type HistorySessionEntry as na, HistorySessionEntrySchema as nb, type HookDecision as nc, HookDecisionSchema as nd, type HookPhase as ne, HookPhaseSchema as nf, type HookResult as ng, HookResultSchema as nh, type HookSpec as ni, HookSpecSchema as nj, type HtmlLayer as nk, HtmlLayerSchema as nl, HttpsOriginSchema as nm, type ImageEngineStatusResponse as nn, ImageEngineStatusResponseSchema as no, type ImageExif as np, ImageExifSchema as nq, type ImageGenerationApprovalIntent as nr, ImageGenerationApprovalIntentSchema as ns, type ImageGenerationMeta as nt, ImageGenerationMetaSchema as nu, type ImageGenerationRequest as nv, ImageGenerationRequestSchema as nw, type ImageGenerationResponse as nx, ImageGenerationResponseSchema as ny, type ImageInputSource as nz, type ClaudePermissionMode as o, KeurmeesterCaseClosedSchema as o$, ImportCustomMcpConfigRequestSchema as o0, type ImportCustomMcpConfigResponse as o1, ImportCustomMcpConfigResponseSchema as o2, type ImportProvenance as o3, ImportProvenanceSchema as o4, type ImportedAboutProvenance as o5, ImportedAboutProvenanceSchema as o6, type ImportedCraftbookProvenance as o7, ImportedCraftbookProvenanceSchema as o8, type ImportedGezelProvenance as o9, InstalledPackageSchema as oA, type InstalledRecognitionModel as oB, InstalledRecognitionModelSchema as oC, type InstalledToolset as oD, InstalledToolsetSchema as oE, type InstalledVideoModel as oF, InstalledVideoModelSchema as oG, type InstructionMergeMode as oH, InstructionMergeModeSchema as oI, type InstructionSourceFile as oJ, InstructionSourceFileSchema as oK, type InterruptSessionRequest as oL, InterruptSessionRequestSchema as oM, type InvokePageToolRequest as oN, InvokePageToolRequestSchema as oO, type InvokePageToolResponse as oP, InvokePageToolResponseSchema as oQ, type InvokeSessionToolRequest as oR, InvokeSessionToolRequestSchema as oS, type InvokeSessionToolResponse as oT, InvokeSessionToolResponseSchema as oU, KNOWLEDGE_EMBEDDING_PROFILE_IDS as oV, KNOWLEDGE_HISTORY_KINDS as oW, KNOWN_PROFILE_IDS as oX, type KeurmeesterAction as oY, KeurmeesterActionSchema as oZ, type KeurmeesterCaseClosed as o_, ImportedGezelProvenanceSchema as oa, type IncompleteKnowledgeDownload as ob, IncompleteKnowledgeDownloadSchema as oc, type IndexReadinessAiTier as od, IndexReadinessAiTierSchema as oe, type IndexReadinessReport as of, IndexReadinessReportSchema as og, IndexReadinessReviewsSchema as oh, type IndexReadinessSearch as oi, IndexReadinessSearchSchema as oj, IndexReadinessWaitSchema as ok, type InsertAtMarkerInProjectWorkspaceFileRequest as ol, InsertAtMarkerInProjectWorkspaceFileRequestSchema as om, type InstallOpenCodePluginRequest as on, InstallOpenCodePluginRequestSchema as oo, type InstallPackageRequest as op, InstallPackageRequestSchema as oq, type InstallPackageResponse as or, InstallPackageResponseSchema as os, type InstallPiExtensionRequest as ot, InstallPiExtensionRequestSchema as ou, type InstalledAudioModel as ov, InstalledAudioModelSchema as ow, type InstalledImageModel as ox, InstalledImageModelSchema as oy, type InstalledPackage as oz, type SystemDiagnostics as p, KnowledgeUpdateCandidateSchema as p$, type KeurmeesterCaseOpened as p0, KeurmeesterCaseOpenedSchema as p1, type KeurmeesterCaseOutcome as p2, KeurmeesterCaseOutcomeSchema as p3, type KeurmeesterCaseRecord as p4, KeurmeesterCaseRecordSchema as p5, type KeurmeesterFailureClass as p6, KeurmeesterFailureClassSchema as p7, type KeurmeesterTriggerKind as p8, KeurmeesterTriggerKindSchema as p9, type KnowledgeDocumentSummary as pA, KnowledgeDocumentSummarySchema as pB, type KnowledgeEmbeddingProfileId as pC, type KnowledgeHistoryKind as pD, type KnowledgeHuggingfaceFile as pE, KnowledgeHuggingfaceFileSchema as pF, type KnowledgeInstallEvent as pG, KnowledgeInstallEventSchema as pH, type KnowledgeInstallJob as pI, KnowledgeInstallJobSchema as pJ, type KnowledgeInstallPhase as pK, KnowledgeInstallPhaseSchema as pL, type KnowledgeInstallRequest as pM, KnowledgeInstallRequestSchema as pN, type KnowledgeInstallSourceKind as pO, KnowledgeInstallSourceKindSchema as pP, type KnowledgeMachineInventory as pQ, KnowledgeMachineInventorySchema as pR, type KnowledgeSearchRequest as pS, KnowledgeSearchRequestSchema as pT, type KnowledgeSemanticSearchMode as pU, KnowledgeSemanticSearchModeSchema as pV, type KnowledgeStorageScope as pW, KnowledgeStorageScopeSchema as pX, type KnowledgeTopicNode as pY, KnowledgeTopicNodeSchema as pZ, type KnowledgeUpdateCandidate as p_, type KeurmeesterVerdict as pa, KeurmeesterVerdictSchema as pb, type KnowledgeActiveInstall as pc, KnowledgeActiveInstallSchema as pd, type KnowledgeAssetInfo as pe, KnowledgeAssetInfoSchema as pf, type KnowledgeAvailableCatalog as pg, KnowledgeAvailableCatalogSchema as ph, type KnowledgeCatalogCategory as pi, KnowledgeCatalogCategorySchema as pj, type KnowledgeCatalogHuggingfaceSource as pk, KnowledgeCatalogHuggingfaceSourceSchema as pl, type KnowledgeCatalogIdentity as pm, KnowledgeCatalogIdentitySchema as pn, type KnowledgeCatalogItemManifest as po, KnowledgeCatalogItemManifestSchema as pp, type KnowledgeCatalogRef as pq, KnowledgeCatalogRefSchema as pr, type KnowledgeCatalogStatus as ps, KnowledgeCatalogStatusSchema as pt, type KnowledgeCatalogVersionManifest as pu, KnowledgeCatalogVersionManifestSchema as pv, type KnowledgeDocumentPage as pw, KnowledgeDocumentPageSchema as px, type KnowledgeDocumentRead as py, KnowledgeDocumentReadSchema as pz, type ChatModelManifest as q, type ListGithubWorkflowRunsResponse as q$, type KnowledgeUpdatesResponse as q0, KnowledgeUpdatesResponseSchema as q1, type KnowledgeUserRegistry as q2, KnowledgeUserRegistrySchema as q3, type KnownProfileId as q4, LEVEL_THRESHOLDS as q5, type Layer as q6, LayerSchema as q7, type LegacyCodexPermissionMode as q8, LegacyCodexPermissionModeSchema as q9, ListDependenciesResponseSchema as qA, type ListDiffpacksResponse as qB, ListDiffpacksResponseSchema as qC, type ListEntityMentionsRequest as qD, ListEntityMentionsRequestSchema as qE, type ListEntityMentionsResponse as qF, ListEntityMentionsResponseSchema as qG, type ListFileIssuesRequest as qH, ListFileIssuesRequestSchema as qI, type ListFileIssuesResponse as qJ, ListFileIssuesResponseSchema as qK, type ListGezelsResponse as qL, ListGezelsResponseSchema as qM, type ListGitHubPullCommentsResponse as qN, ListGitHubPullCommentsResponseSchema as qO, type ListGitHubPullFilesResponse as qP, ListGitHubPullFilesResponseSchema as qQ, type ListGitHubPullsResponse as qR, ListGitHubPullsResponseSchema as qS, type ListGitHubWorkflowRunsResponse as qT, ListGitHubWorkflowRunsResponseSchema as qU, type ListGithubPullCommentsResponse as qV, ListGithubPullCommentsResponseSchema as qW, type ListGithubPullFilesResponse as qX, ListGithubPullFilesResponseSchema as qY, type ListGithubPullsResponse as qZ, ListGithubPullsResponseSchema as q_, type LicenseClass as qa, LicenseClassSchema as qb, LicenseMetaShape as qc, type ListActiveImagePullsResponse as qd, ListActiveImagePullsResponseSchema as qe, type ListActiveVideoPullsResponse as qf, ListActiveVideoPullsResponseSchema as qg, type ListAiAppsResponse as qh, ListAiAppsResponseSchema as qi, type ListAppServeSitesResponse as qj, ListAppServeSitesResponseSchema as qk, type ListAudioCatalogResponse as ql, ListAudioCatalogResponseSchema as qm, type ListAudioVoicesResponse as qn, ListAudioVoicesResponseSchema as qo, type ListCatalogItemVersionsResponse as qp, ListCatalogItemVersionsResponseSchema as qq, type ListCatalogItemsResponse as qr, ListCatalogItemsResponseSchema as qs, type ListChatSessionsResponse as qt, ListChatSessionsResponseSchema as qu, type ListCodeReviewsResponse as qv, ListCodeReviewsResponseSchema as qw, type ListCraftbooksResponse as qx, ListCraftbooksResponseSchema as qy, type ListDependenciesResponse as qz, type ModelFitnessRecord as r, type LocalHarnessSetupState as r$, ListGithubWorkflowRunsResponseSchema as r0, type ListHistoryResponse as r1, ListHistoryResponseSchema as r2, type ListInstalledAudioModelsResponse as r3, ListInstalledAudioModelsResponseSchema as r4, type ListInstalledImageModelsResponse as r5, ListInstalledImageModelsResponseSchema as r6, type ListInstalledRecognitionModelsResponse as r7, ListInstalledRecognitionModelsResponseSchema as r8, type ListInstalledVideoModelsResponse as r9, ListTablesRequestSchema as rA, type ListTablesResponse as rB, ListTablesResponseSchema as rC, type ListTaskNotesResponse as rD, ListTaskNotesResponseSchema as rE, type ListTasksResponse as rF, ListTasksResponseSchema as rG, type ListTerminalThreadsResponse as rH, ListTerminalThreadsResponseSchema as rI, type ListTimelineResponse as rJ, ListTimelineResponseSchema as rK, type LlamaCppContextSizing as rL, type LlamaCppContextSizingResponse as rM, LlamaCppContextSizingResponseSchema as rN, LlamaCppContextSizingSchema as rO, type LlamaCppEngineConfig as rP, LlamaCppEngineConfigSchema as rQ, LlamaCppLazyModeSchema as rR, LlamaCppLoadModeSchema as rS, LlamaCppV4ConfigResetSchema as rT, LlamaCppV4ConfigSchema as rU, type LocalEngineLifecycle as rV, LocalEngineLifecycleSchema as rW, type LocalHarnessBridge as rX, LocalHarnessBridgeSchema as rY, type LocalHarnessModelOption as rZ, LocalHarnessModelOptionSchema as r_, ListInstalledVideoModelsResponseSchema as ra, type ListMentionCandidatesResponse as rb, ListMentionCandidatesResponseSchema as rc, type ListModelsResponse as rd, ListModelsResponseSchema as re, type ListPackageScriptsResponse as rf, ListPackageScriptsResponseSchema as rg, type ListPeopleResponse as rh, ListPeopleResponseSchema as ri, type ListProjectsForGezelResponse as rj, ListProjectsForGezelResponseSchema as rk, type ListProjectsResponse as rl, ListProjectsResponseSchema as rm, type ListPromptDraftsResponse as rn, ListPromptDraftsResponseSchema as ro, type ListQuestionsResponse as rp, ListQuestionsResponseSchema as rq, type ListRecognitionCatalogResponse as rr, ListRecognitionCatalogResponseSchema as rs, type ListScriptsResponse as rt, ListScriptsResponseSchema as ru, type ListSessionQueueResponse as rv, ListSessionQueueResponseSchema as rw, type ListSessionToolsResponse as rx, ListSessionToolsResponseSchema as ry, type ListTablesRequest as rz, type GateScriptRef as s, ModelContextOverrideUpdateSchema as s$, LocalHarnessSetupStateSchema as s0, LocalHarnessStatusBaseSchema as s1, MAX_RESTART_RESUMES as s2, MEESTER_STATUS_HEADLINE_MAX as s3, MODEL_TIER_ORDER as s4, type MachineMemoryKind as s5, MachineMemoryKindSchema as s6, type MachineMemoryUsage as s7, MachineMemoryUsageSchema as s8, type MapAttackSurfaceResponse as s9, MeesterStatusCtaSchema as sA, type MeesterStatusModelOutput as sB, MeesterStatusModelOutputSchema as sC, type MeesterStatusReport as sD, MeesterStatusReportSchema as sE, type MeesterStatusResponse as sF, MeesterStatusResponseSchema as sG, type MeesterStatusState as sH, MeesterStatusStateSchema as sI, type MemorySearchRequest as sJ, MemorySearchRequestSchema as sK, type MentionCandidate as sL, MentionCandidateSchema as sM, type MessageGezelRequest as sN, MessageGezelRequestSchema as sO, type MessageGezelResponse as sP, MessageGezelResponseSchema as sQ, type MessageImageDigest as sR, MessageImageDigestSchema as sS, MinGezelVersionShape as sT, type MlxRuntimeStatus as sU, MlxRuntimeStatusSchema as sV, type MockHttpRoute as sW, MockHttpRouteSchema as sX, type MockService as sY, MockServiceSchema as sZ, type ModelContextOverrideUpdate as s_, MapAttackSurfaceResponseSchema as sa, type MapBlock as sb, type MapBlockHealth as sc, MapBlockHealthSchema as sd, MapBlockSchema as se, MapBuildingSchema as sf, MapDistrictSchema as sg, MapPlazaSchema as sh, type MapPrChange as si, MapPrChangeSchema as sj, type MapPrOverlay as sk, MapPrOverlaySchema as sl, type MapRepoRequest as sm, MapRepoRequestSchema as sn, type MapRepoResponse as so, MapRepoResponseSchema as sp, type MapRoad as sq, MapRoadSchema as sr, MapStreetSchema as ss, type MapUrbanity as st, MapUrbanitySchema as su, type McpToolInfo as sv, McpToolInfoSchema as sw, type MeesterStatusAction as sx, MeesterStatusActionSchema as sy, type MeesterStatusCta as sz, type ModelTier as t, NpmInstallApprovalDecisionSchema as t$, type ModelContextOverridesResponse as t0, ModelContextOverridesResponseSchema as t1, type ModelDownloadPreflightRequest as t2, ModelDownloadPreflightRequestSchema as t3, type ModelDownloadPreflightResponse as t4, ModelDownloadPreflightResponseSchema as t5, type ModelFamily as t6, ModelFamilySchema as t7, ModelFitnessRecordSchema as t8, type ModelFitnessStatus as t9, NewTaskStepSchema as tA, type NightShiftBackgroundWorkBrief as tB, NightShiftBackgroundWorkBriefSchema as tC, type NightShiftCompletedTask as tD, NightShiftCompletedTaskSchema as tE, type NightShiftQuotaHoldReason as tF, NightShiftQuotaHoldReasonSchema as tG, type NightShiftReport as tH, NightShiftReportSchema as tI, type NightShiftReviewIntent as tJ, NightShiftReviewIntentSchema as tK, type NightShiftReviewResponse as tL, NightShiftReviewResponseSchema as tM, type NightShiftStatusResponse as tN, NightShiftStatusResponseSchema as tO, type NightShiftTallyResponse as tP, NightShiftTallyResponseSchema as tQ, type NightShiftTaskBrief as tR, NightShiftTaskBriefSchema as tS, type NightShiftTasksResponse as tT, NightShiftTasksResponseSchema as tU, type NightShiftWindowBounds as tV, NightShiftWindowBoundsSchema as tW, type NodeScriptPassesCheck as tX, NodeScriptPassesCheckSchema as tY, type NormalizedStepGate as tZ, type NpmInstallApprovalDecision as t_, ModelFitnessStatusSchema as ta, type ModelFitnessTrigger as tb, ModelFitnessTriggerSchema as tc, type ModelInfo as td, ModelInfoSchema as te, type ModelStyle as tf, ModelStyleSchema as tg, ModelTierSchema as th, type NamedScriptCapability as ti, NamedScriptCapabilitySchema as tj, type NativeCapacityCommand as tk, NativeCapacityCommandSchema as tl, type NativeCapacityReply as tm, NativeCapacityReplySchema as tn, type NativeEngineInstallStatus as to, NativeEngineInstallStatusSchema as tp, type NativeEngineName as tq, NativeEngineNameSchema as tr, type NativeEngineResolveEvent as ts, NativeEngineResolveEventSchema as tt, type NativeEngineStatusResponse as tu, NativeEngineStatusResponseSchema as tv, NewCraftbookStepSchema as tw, type NewTaskFanout as tx, NewTaskFanoutSchema as ty, type NewTaskStep as tz, type GateCheck as u, PageRefreshMessageSchema as u$, type NpmInstallApprovalPackage as u0, NpmInstallApprovalPackageSchema as u1, type NpmInstallRequest as u2, NpmInstallRequestSchema as u3, NpmPackageNameSchema as u4, type NpmRegistryPackageRequest as u5, NpmRegistryPackageRequestSchema as u6, NpmRegistryVersionSchema as u7, type ObservationColumn as u8, type ObservationColumnRole as u9, OutcomeSchema as uA, type OutlineFileRequest as uB, OutlineFileRequestSchema as uC, type OutlineFileResponse as uD, OutlineFileResponseSchema as uE, PAGE_BRIDGE_VERSION as uF, type PageApiBootstrap as uG, PageApiBootstrapSchema as uH, type PageApiServeBootstrap as uI, PageApiServeBootstrapSchema as uJ, type PageBridgeErrorCode as uK, PageBridgeErrorCodeSchema as uL, type PageCheckRequest as uM, PageCheckRequestSchema as uN, type PageCheckResponse as uO, PageCheckResponseSchema as uP, PageHelloMessageSchema as uQ, PageInvokeMessageSchema as uR, type PageReadEntry as uS, PageReadEntrySchema as uT, PageReadMessageSchema as uU, type PageReadRequest as uV, PageReadRequestSchema as uW, type PageReadResponse as uX, PageReadResponseSchema as uY, type PageReadSource as uZ, PageReadSourceSchema as u_, ObservationColumnRoleSchema as ua, ObservationColumnSchema as ub, type ObservationColumnType as uc, ObservationColumnTypeSchema as ud, type ObservationExemplar as ue, ObservationExemplarSchema as uf, type ObservationMeasure as ug, ObservationMeasureSchema as uh, type ObservationRetention as ui, ObservationRetentionSchema as uj, type ObservationRollup as uk, ObservationRollupSchema as ul, type ObservationTableManifest as um, ObservationTableManifestSchema as un, type ObservationTableSummary as uo, ObservationTableSummarySchema as up, type OpenCodeSetupModelOption as uq, OpenCodeSetupModelOptionSchema as ur, type OpenCodeSetupPlugin as us, OpenCodeSetupPluginSchema as ut, type OpenCodeSetupPluginState as uu, OpenCodeSetupPluginStateSchema as uv, type OpenCodeSetupState as uw, OpenCodeSetupStateSchema as ux, type OpenCodeSetupStatusResponse as uy, OpenCodeSetupStatusResponseSchema as uz, type StepGate as v, type ProjectCraftbookProvenance as v$, type PageToParentMessage as v0, PageToParentMessageSchema as v1, PageUnwatchMessageSchema as v2, PageWatchMessageSchema as v3, ParentChangeMessageSchema as v4, ParentInitMessageSchema as v5, ParentReadResultMessageSchema as v6, ParentResultMessageSchema as v7, ParentThemeMessageSchema as v8, type ParentToPageMessage as v9, PiSetupExtensionSchema as vA, type PiSetupExtensionState as vB, PiSetupExtensionStateSchema as vC, type PiSetupModelOption as vD, PiSetupModelOptionSchema as vE, type PiSetupState as vF, PiSetupStateSchema as vG, type PiSetupStatusResponse as vH, PiSetupStatusResponseSchema as vI, type PixelsLayer as vJ, PixelsLayerSchema as vK, type PreviewLogEntry as vL, PreviewLogEntrySchema as vM, type PreviewSource as vN, PreviewSourceSchema as vO, type ProfileKind as vP, type ProfileMeta as vQ, type ProjectAboutPreviewRequest as vR, ProjectAboutPreviewRequestSchema as vS, type ProjectAboutPreviewResponse as vT, ProjectAboutPreviewResponseSchema as vU, type ProjectActivity as vV, ProjectActivitySchema as vW, type ProjectApprovalsResponse as vX, ProjectApprovalsResponseSchema as vY, type ProjectConnectorBinding as vZ, ProjectConnectorBindingSchema as v_, ParentToPageMessageSchema as va, type ParseCraftbookTestSpecOptions as vb, type ParseCraftbookTestSpecResult as vc, type ParseRunRecordingOptions as vd, type ParseRunRecordingResult as ve, type PatchPromptDraftRequest as vf, PatchPromptDraftRequestSchema as vg, type PendingGezelMessage as vh, PendingGezelMessageSchema as vi, type PendingHandoffQueue as vj, PendingHandoffQueueSchema as vk, type PendingImportItem as vl, PendingImportItemSchema as vm, type PendingImports as vn, PendingImportsSchema as vo, type PendingLevelUp as vp, PendingLevelUpSchema as vq, type PendingPersona as vr, PendingPersonaSchema as vs, type PendingScript as vt, PendingScriptSchema as vu, type PersonSample as vv, PersonSampleSchema as vw, type PersonSummary as vx, PersonSummarySchema as vy, type PiSetupExtension as vz, type CraftbookStep as w, ProjectTypeToolReactionSchema as w$, ProjectCraftbookProvenanceSchema as w0, type ProjectDetail as w1, ProjectDetailSchema as w2, type ProjectFileEntry as w3, ProjectFileEntrySchema as w4, type ProjectFolderPreviewRequest as w5, ProjectFolderPreviewRequestSchema as w6, type ProjectFolderPreviewResponse as w7, ProjectFolderPreviewResponseSchema as w8, type ProjectForGezel as w9, ProjectTabVisibilitySchema as wA, type ProjectTypeApplyPlan as wB, ProjectTypeApplyPlanSchema as wC, type ProjectTypeCategory as wD, ProjectTypeCategorySchema as wE, type ProjectTypeGezelRef as wF, ProjectTypeGezelSchema as wG, type ProjectTypeIdentity as wH, ProjectTypeIdentitySchema as wI, type ProjectTypeManifest as wJ, ProjectTypeManifestSchema as wK, type ProjectTypeOverlay as wL, ProjectTypeOverlaySchema as wM, type ProjectTypePages as wN, ProjectTypePagesSchema as wO, type ProjectTypePreviewRead as wP, ProjectTypePreviewReadSchema as wQ, type ProjectTypeProvenance as wR, ProjectTypeProvenanceSchema as wS, type ProjectTypeSchedule as wT, ProjectTypeScheduleSchema as wU, type ProjectTypeSeedState as wV, ProjectTypeSeedStateSchema as wW, type ProjectTypeStatusResponse as wX, ProjectTypeStatusResponseSchema as wY, type ProjectTypeTool as wZ, type ProjectTypeToolReaction as w_, ProjectForGezelSchema as wa, type ProjectGitHub as wb, ProjectGitHubSchema as wc, type ProjectGithub as wd, ProjectGithubSchema as we, type ProjectKnowledgeCatalogs as wf, ProjectKnowledgeCatalogsSchema as wg, type ProjectLocalConfig as wh, ProjectLocalConfigSchema as wi, ProjectManagedWorkspaceWritePolicySchema as wj, type ProjectMode as wk, ProjectModeSchema as wl, type ProjectNudgeConfig as wm, ProjectNudgeConfigSchema as wn, type ProjectNudgeState as wo, ProjectNudgeStateSchema as wp, type ProjectResponse as wq, ProjectResponseSchema as wr, ProjectSchema as ws, type ProjectSearchCraftbookSuggestion as wt, ProjectSearchCraftbookSuggestionSchema as wu, type ProjectSearchRequest as wv, ProjectSearchRequestSchema as ww, type ProjectSearchResponse as wx, ProjectSearchResponseSchema as wy, type ProjectTabVisibility as wz, type StepDeliverable as x, RecentTabSchema as x$, ProjectTypeToolSchema as x0, type ProjectTypeToolsetRef as x1, ProjectTypeToolsetSchema as x2, type ProjectTypeVersionManifest as x3, ProjectTypeVersionManifestSchema as x4, type PrometheusAlertsCheck as x5, PrometheusAlertsCheckSchema as x6, type PromptDraft as x7, type PromptDraftConfig as x8, PromptDraftConfigSchema as x9, type ReadArtifactSliceOpts as xA, ReadArtifactSliceOptsSchema as xB, type ReadArtifactSliceResponse as xC, ReadArtifactSliceResponseSchema as xD, type ReadDocAsMarkdownRequest as xE, ReadDocAsMarkdownRequestSchema as xF, type ReadDocAsMarkdownResponse as xG, ReadDocAsMarkdownResponseSchema as xH, type ReadImageBase64Request as xI, ReadImageBase64RequestSchema as xJ, type ReadImageBase64Response as xK, ReadImageBase64ResponseSchema as xL, type ReadSymbolRequest as xM, ReadSymbolRequestSchema as xN, type ReadSymbolResponse as xO, ReadSymbolResponseSchema as xP, type ReadWorkspaceFilesRequest as xQ, ReadWorkspaceFilesRequestSchema as xR, type ReadWorkspaceFilesResponse as xS, ReadWorkspaceFilesResponseSchema as xT, type ReasoningBlock as xU, ReasoningBlockSchema as xV, type ReasoningFormat as xW, ReasoningFormatSchema as xX, type RecentTab as xY, type RecentTabArea as xZ, RecentTabAreaSchema as x_, type PromptDraftId as xa, PromptDraftIdSchema as xb, type PromptDraftMeta as xc, PromptDraftMetaSchema as xd, PromptDraftSchema as xe, type PromptDraftStatus as xf, PromptDraftStatusSchema as xg, type PromptDraftSummary as xh, PromptDraftSummarySchema as xi, type PromptTags as xj, PromptTagsSchema as xk, type QueryTableRequest as xl, QueryTableRequestSchema as xm, type QueryTableResponse as xn, QueryTableResponseSchema as xo, type Question as xp, type QuestionAnswer as xq, QuestionAnswerSchema as xr, type QuestionIntent as xs, QuestionIntentSchema as xt, QuestionSchema as xu, type QueuedMessage as xv, QueuedMessageSchema as xw, RETRIEVAL_MODES as xx, RETRIEVAL_SOURCES as xy, RUN_RECORDING_SCHEMA_VERSION as xz, type Craftbook as y, RestoreConfirmSchema as y$, RecoMetaShape as y0, type RecognitionCatalogEntry as y1, RecognitionCatalogEntrySchema as y2, type RecognitionHealth as y3, RecognitionHealthSchema as y4, type RecognitionMode as y5, type RecognitionModeRequest as y6, RecognitionModeRequestSchema as y7, RecognitionModeSchema as y8, type RecognitionPullEvent as y9, type RenderImageResponse as yA, RenderImageResponseSchema as yB, type ReplaceInProjectWorkspaceFileRequest as yC, ReplaceInProjectWorkspaceFileRequestSchema as yD, type ReplaceLinesInProjectWorkspaceFileRequest as yE, ReplaceLinesInProjectWorkspaceFileRequestSchema as yF, type ReportPreviewLogRequest as yG, ReportPreviewLogRequestSchema as yH, type RequestAskRequest as yI, RequestAskRequestSchema as yJ, type RequestAskResponse as yK, RequestAskResponseSchema as yL, type RequestPermissionRequest as yM, RequestPermissionRequestSchema as yN, type RequestPermissionResponse as yO, RequestPermissionResponseSchema as yP, type RerollGezelPoppetjeRequest as yQ, RerollGezelPoppetjeRequestSchema as yR, type ResidentEngineModel as yS, ResidentEngineModelSchema as yT, type ResolveArtifactResponse as yU, ResolveArtifactResponseSchema as yV, type ResolveSecurityFindingRequest as yW, ResolveSecurityFindingRequestSchema as yX, type ResolveSecurityFindingResponse as yY, ResolveSecurityFindingResponseSchema as yZ, type RestoreConfirm as y_, RecognitionPullEventSchema as ya, type RecognitionRequest as yb, RecognitionRequestSchema as yc, type RecognitionResponse as yd, RecognitionResponseSchema as ye, RectSchema as yf, type ReferenceFileLocationRequest as yg, ReferenceFileLocationRequestSchema as yh, type ReferenceFileLocationResponse as yi, ReferenceFileLocationResponseSchema as yj, type ReferencePreviewRequest as yk, ReferencePreviewRequestSchema as yl, type ReferencePreviewResponse as ym, ReferencePreviewResponseSchema as yn, type RemoteServingConfig as yo, RemoteServingConfigSchema as yp, type RemoveAiAppResponse as yq, RemoveAiAppResponseSchema as yr, type RenameDocumentRequest as ys, RenameDocumentRequestSchema as yt, type RenameGezelRequest as yu, RenameGezelRequestSchema as yv, type RenamePersonRequest as yw, RenamePersonRequestSchema as yx, type RenderImageRequest as yy, RenderImageRequestSchema as yz, type Task as z, type ScanFindingsRequest as z$, type RestoreConflict as z0, RestoreConflictSchema as z1, type RestoreReview as z2, type RestoreReviewItem as z3, RestoreReviewItemSchema as z4, RestoreReviewSchema as z5, type RestoreScanRequest as z6, RestoreScanRequestSchema as z7, type RetrievalMode as z8, RetrievalModeSchema as z9, RunRecordingBudgetSchema as zA, type RunRecordingManifest as zB, RunRecordingManifestSchema as zC, RunRecordingProvenanceSchema as zD, type RunRecordingScene as zE, type RunRecordingSceneKind as zF, type RunRecordingSceneRefs as zG, RunRecordingSceneSchema as zH, RunRecordingSchema as zI, type RunRecordingScreenshot as zJ, RunRecordingScreenshotSchema as zK, RunRecordingTrialSchema as zL, type RunScriptRequest as zM, RunScriptRequestSchema as zN, type RunScriptResponse as zO, RunScriptResponseSchema as zP, type RunTerminalCommandRequest as zQ, RunTerminalCommandRequestSchema as zR, type RunTerminalCommandResponse as zS, RunTerminalCommandResponseSchema as zT, type SamplingBlock as zU, SamplingBlockSchema as zV, type SaveScriptSourceRequest as zW, SaveScriptSourceRequestSchema as zX, type SaveScriptSourceResponse as zY, SaveScriptSourceResponseSchema as zZ, ScaProvenanceSchema as z_, type RetrievalPolicy as za, RetrievalPolicySchema as zb, type RetrievalSource as zc, RetrievalSourceSchema as zd, type RevertGezelIconRequest as ze, RevertGezelIconRequestSchema as zf, type RewriteTextContext as zg, RewriteTextContextSchema as zh, type RewriteTextRequest as zi, RewriteTextRequestSchema as zj, type RewriteTextResponse as zk, RewriteTextResponseSchema as zl, type RunGitRequest as zm, RunGitRequestSchema as zn, type RunGitResponse as zo, RunGitResponseSchema as zp, type RunNpxRequest as zq, RunNpxRequestSchema as zr, type RunNpxResponse as zs, RunNpxResponseSchema as zt, type RunPackageScriptRequest as zu, RunPackageScriptRequestSchema as zv, type RunPackageScriptResponse as zw, RunPackageScriptResponseSchema as zx, RunRecordingActorSchema as zy, type RunRecordingBudget as zz };
|