@vibes.diy/api-svc 2.5.19 → 2.5.26
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/chat-msg-evento.d.ts +157 -105
- package/evento-handler-manifest.d.ts +181 -129
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/intern/get-model-defaults.d.ts +2 -2
- package/intern/get-model-defaults.js +12 -10
- package/intern/get-model-defaults.js.map +1 -1
- package/intern/pre-allocate.js +2 -2
- package/intern/pre-allocate.js.map +1 -1
- package/intern/write-apps.js +18 -14
- package/intern/write-apps.js.map +1 -1
- package/models.json +50 -42
- package/package.json +12 -12
- package/public/app-seq-allocation.d.ts +20 -0
- package/public/app-seq-allocation.js +92 -0
- package/public/app-seq-allocation.js.map +1 -0
- package/public/ensure-app-settings.js +17 -17
- package/public/ensure-app-settings.js.map +1 -1
- package/public/list-models.d.ts +3 -3
- package/public/prompt-chat-section.js +6 -5
- package/public/prompt-chat-section.js.map +1 -1
- package/public/seq-allocation.d.ts +1 -0
- package/public/seq-allocation.js +15 -0
- package/public/seq-allocation.js.map +1 -1
- package/tsconfig.json +3 -0
package/chat-msg-evento.d.ts
CHANGED
|
@@ -240,64 +240,6 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
240
240
|
error?: string | undefined;
|
|
241
241
|
settings: {
|
|
242
242
|
entries: ({
|
|
243
|
-
type: "app.public.access";
|
|
244
|
-
enable: boolean;
|
|
245
|
-
tick?: {
|
|
246
|
-
count: number;
|
|
247
|
-
last: Date;
|
|
248
|
-
} | undefined;
|
|
249
|
-
} | {
|
|
250
|
-
type: "app.request";
|
|
251
|
-
enable: boolean;
|
|
252
|
-
autoAcceptRole?: "editor" | "submitter" | "viewer" | undefined;
|
|
253
|
-
} | {
|
|
254
|
-
type: "app.acl.active.request";
|
|
255
|
-
role: "viewer";
|
|
256
|
-
state: "pending";
|
|
257
|
-
request: {
|
|
258
|
-
key: string;
|
|
259
|
-
provider: "clerk" | "github" | "google";
|
|
260
|
-
msg?: string | undefined;
|
|
261
|
-
userId: string;
|
|
262
|
-
created: Date;
|
|
263
|
-
};
|
|
264
|
-
} | {
|
|
265
|
-
type: "app.acl.active.request";
|
|
266
|
-
role: "editor" | "submitter" | "viewer";
|
|
267
|
-
state: "approved";
|
|
268
|
-
request: {
|
|
269
|
-
key: string;
|
|
270
|
-
provider: "clerk" | "github" | "google";
|
|
271
|
-
msg?: string | undefined;
|
|
272
|
-
userId: string;
|
|
273
|
-
created: Date;
|
|
274
|
-
};
|
|
275
|
-
tick: {
|
|
276
|
-
count: number;
|
|
277
|
-
last: Date;
|
|
278
|
-
};
|
|
279
|
-
grant: {
|
|
280
|
-
ownerId: string;
|
|
281
|
-
key?: string | undefined;
|
|
282
|
-
on: Date;
|
|
283
|
-
};
|
|
284
|
-
} | {
|
|
285
|
-
type: "app.acl.active.request";
|
|
286
|
-
role: "editor" | "submitter" | "viewer";
|
|
287
|
-
state: "rejected";
|
|
288
|
-
request: {
|
|
289
|
-
key: string;
|
|
290
|
-
provider: "clerk" | "github" | "google";
|
|
291
|
-
msg?: string | undefined;
|
|
292
|
-
userId: string;
|
|
293
|
-
created: Date;
|
|
294
|
-
};
|
|
295
|
-
grant: {
|
|
296
|
-
ownerId: string;
|
|
297
|
-
key?: string | undefined;
|
|
298
|
-
on: Date;
|
|
299
|
-
};
|
|
300
|
-
} | {
|
|
301
243
|
type: "app.acl.active.invite";
|
|
302
244
|
role: "editor";
|
|
303
245
|
state: "pending";
|
|
@@ -383,6 +325,64 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
383
325
|
count: number;
|
|
384
326
|
last: Date;
|
|
385
327
|
};
|
|
328
|
+
} | {
|
|
329
|
+
type: "app.acl.active.request";
|
|
330
|
+
role: "viewer";
|
|
331
|
+
state: "pending";
|
|
332
|
+
request: {
|
|
333
|
+
key: string;
|
|
334
|
+
provider: "clerk" | "github" | "google";
|
|
335
|
+
msg?: string | undefined;
|
|
336
|
+
userId: string;
|
|
337
|
+
created: Date;
|
|
338
|
+
};
|
|
339
|
+
} | {
|
|
340
|
+
type: "app.acl.active.request";
|
|
341
|
+
role: "editor" | "submitter" | "viewer";
|
|
342
|
+
state: "approved";
|
|
343
|
+
request: {
|
|
344
|
+
key: string;
|
|
345
|
+
provider: "clerk" | "github" | "google";
|
|
346
|
+
msg?: string | undefined;
|
|
347
|
+
userId: string;
|
|
348
|
+
created: Date;
|
|
349
|
+
};
|
|
350
|
+
tick: {
|
|
351
|
+
count: number;
|
|
352
|
+
last: Date;
|
|
353
|
+
};
|
|
354
|
+
grant: {
|
|
355
|
+
ownerId: string;
|
|
356
|
+
key?: string | undefined;
|
|
357
|
+
on: Date;
|
|
358
|
+
};
|
|
359
|
+
} | {
|
|
360
|
+
type: "app.acl.active.request";
|
|
361
|
+
role: "editor" | "submitter" | "viewer";
|
|
362
|
+
state: "rejected";
|
|
363
|
+
request: {
|
|
364
|
+
key: string;
|
|
365
|
+
provider: "clerk" | "github" | "google";
|
|
366
|
+
msg?: string | undefined;
|
|
367
|
+
userId: string;
|
|
368
|
+
created: Date;
|
|
369
|
+
};
|
|
370
|
+
grant: {
|
|
371
|
+
ownerId: string;
|
|
372
|
+
key?: string | undefined;
|
|
373
|
+
on: Date;
|
|
374
|
+
};
|
|
375
|
+
} | {
|
|
376
|
+
type: "app.public.access";
|
|
377
|
+
enable: boolean;
|
|
378
|
+
tick?: {
|
|
379
|
+
count: number;
|
|
380
|
+
last: Date;
|
|
381
|
+
} | undefined;
|
|
382
|
+
} | {
|
|
383
|
+
type: "app.request";
|
|
384
|
+
enable: boolean;
|
|
385
|
+
autoAcceptRole?: "editor" | "submitter" | "viewer" | undefined;
|
|
386
386
|
} | {
|
|
387
387
|
type: "active.title";
|
|
388
388
|
title: string;
|
|
@@ -426,14 +426,14 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
426
426
|
name: string;
|
|
427
427
|
description: string;
|
|
428
428
|
featured?: boolean | undefined;
|
|
429
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
430
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
431
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
429
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
430
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
431
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
432
432
|
imageInput?: boolean | undefined;
|
|
433
433
|
};
|
|
434
434
|
apiKey?: string | undefined;
|
|
435
435
|
};
|
|
436
|
-
usage: "chat";
|
|
436
|
+
usage: "chat" | "codegen";
|
|
437
437
|
} | {
|
|
438
438
|
type: "active.model";
|
|
439
439
|
param: {
|
|
@@ -442,14 +442,14 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
442
442
|
name: string;
|
|
443
443
|
description: string;
|
|
444
444
|
featured?: boolean | undefined;
|
|
445
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
446
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
447
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
445
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
446
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
447
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
448
448
|
imageInput?: boolean | undefined;
|
|
449
449
|
};
|
|
450
450
|
apiKey?: string | undefined;
|
|
451
451
|
};
|
|
452
|
-
usage: "app";
|
|
452
|
+
usage: "app" | "runtime";
|
|
453
453
|
} | {
|
|
454
454
|
type: "active.model";
|
|
455
455
|
param: {
|
|
@@ -458,9 +458,9 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
458
458
|
name: string;
|
|
459
459
|
description: string;
|
|
460
460
|
featured?: boolean | undefined;
|
|
461
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
462
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
463
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
461
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
462
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
463
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
464
464
|
imageInput?: boolean | undefined;
|
|
465
465
|
};
|
|
466
466
|
apiKey?: string | undefined;
|
|
@@ -492,28 +492,28 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
492
492
|
cid: string;
|
|
493
493
|
mime: string;
|
|
494
494
|
} | undefined;
|
|
495
|
-
|
|
495
|
+
runtime?: {
|
|
496
496
|
model?: {
|
|
497
497
|
id: string;
|
|
498
498
|
name: string;
|
|
499
499
|
description: string;
|
|
500
500
|
featured?: boolean | undefined;
|
|
501
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
502
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
503
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
501
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
502
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
503
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
504
504
|
imageInput?: boolean | undefined;
|
|
505
505
|
} | undefined;
|
|
506
506
|
apiKey?: string | undefined;
|
|
507
507
|
} | undefined;
|
|
508
|
-
|
|
508
|
+
codegen?: {
|
|
509
509
|
model?: {
|
|
510
510
|
id: string;
|
|
511
511
|
name: string;
|
|
512
512
|
description: string;
|
|
513
513
|
featured?: boolean | undefined;
|
|
514
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
515
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
516
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
514
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
515
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
516
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
517
517
|
imageInput?: boolean | undefined;
|
|
518
518
|
} | undefined;
|
|
519
519
|
apiKey?: string | undefined;
|
|
@@ -524,9 +524,9 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
524
524
|
name: string;
|
|
525
525
|
description: string;
|
|
526
526
|
featured?: boolean | undefined;
|
|
527
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
528
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
529
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
527
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
528
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
529
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
530
530
|
imageInput?: boolean | undefined;
|
|
531
531
|
} | undefined;
|
|
532
532
|
apiKey?: string | undefined;
|
|
@@ -601,28 +601,28 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
601
601
|
}[];
|
|
602
602
|
} | {
|
|
603
603
|
type: "modelDefaults";
|
|
604
|
-
|
|
604
|
+
codegen?: {
|
|
605
605
|
model?: {
|
|
606
606
|
id: string;
|
|
607
607
|
name: string;
|
|
608
608
|
description: string;
|
|
609
609
|
featured?: boolean | undefined;
|
|
610
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
611
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
612
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
610
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
611
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
612
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
613
613
|
imageInput?: boolean | undefined;
|
|
614
614
|
} | undefined;
|
|
615
615
|
apiKey?: string | undefined;
|
|
616
616
|
} | undefined;
|
|
617
|
-
|
|
617
|
+
runtime?: {
|
|
618
618
|
model?: {
|
|
619
619
|
id: string;
|
|
620
620
|
name: string;
|
|
621
621
|
description: string;
|
|
622
622
|
featured?: boolean | undefined;
|
|
623
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
624
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
625
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
623
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
624
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
625
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
626
626
|
imageInput?: boolean | undefined;
|
|
627
627
|
} | undefined;
|
|
628
628
|
apiKey?: string | undefined;
|
|
@@ -633,9 +633,35 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
633
633
|
name: string;
|
|
634
634
|
description: string;
|
|
635
635
|
featured?: boolean | undefined;
|
|
636
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
637
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
638
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
636
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
637
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
638
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
639
|
+
imageInput?: boolean | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
apiKey?: string | undefined;
|
|
642
|
+
} | undefined;
|
|
643
|
+
chat?: {
|
|
644
|
+
model?: {
|
|
645
|
+
id: string;
|
|
646
|
+
name: string;
|
|
647
|
+
description: string;
|
|
648
|
+
featured?: boolean | undefined;
|
|
649
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
650
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
651
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
652
|
+
imageInput?: boolean | undefined;
|
|
653
|
+
} | undefined;
|
|
654
|
+
apiKey?: string | undefined;
|
|
655
|
+
} | undefined;
|
|
656
|
+
app?: {
|
|
657
|
+
model?: {
|
|
658
|
+
id: string;
|
|
659
|
+
name: string;
|
|
660
|
+
description: string;
|
|
661
|
+
featured?: boolean | undefined;
|
|
662
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
663
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
664
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
639
665
|
imageInput?: boolean | undefined;
|
|
640
666
|
} | undefined;
|
|
641
667
|
apiKey?: string | undefined;
|
|
@@ -672,28 +698,28 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
672
698
|
}[];
|
|
673
699
|
} | {
|
|
674
700
|
type: "modelDefaults";
|
|
675
|
-
|
|
701
|
+
codegen?: {
|
|
676
702
|
model?: {
|
|
677
703
|
id: string;
|
|
678
704
|
name: string;
|
|
679
705
|
description: string;
|
|
680
706
|
featured?: boolean | undefined;
|
|
681
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
682
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
683
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
707
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
708
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
709
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
684
710
|
imageInput?: boolean | undefined;
|
|
685
711
|
} | undefined;
|
|
686
712
|
apiKey?: string | undefined;
|
|
687
713
|
} | undefined;
|
|
688
|
-
|
|
714
|
+
runtime?: {
|
|
689
715
|
model?: {
|
|
690
716
|
id: string;
|
|
691
717
|
name: string;
|
|
692
718
|
description: string;
|
|
693
719
|
featured?: boolean | undefined;
|
|
694
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
695
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
696
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
720
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
721
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
722
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
697
723
|
imageInput?: boolean | undefined;
|
|
698
724
|
} | undefined;
|
|
699
725
|
apiKey?: string | undefined;
|
|
@@ -704,9 +730,35 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
704
730
|
name: string;
|
|
705
731
|
description: string;
|
|
706
732
|
featured?: boolean | undefined;
|
|
707
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
708
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
709
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
733
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
734
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
735
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
736
|
+
imageInput?: boolean | undefined;
|
|
737
|
+
} | undefined;
|
|
738
|
+
apiKey?: string | undefined;
|
|
739
|
+
} | undefined;
|
|
740
|
+
chat?: {
|
|
741
|
+
model?: {
|
|
742
|
+
id: string;
|
|
743
|
+
name: string;
|
|
744
|
+
description: string;
|
|
745
|
+
featured?: boolean | undefined;
|
|
746
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
747
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
748
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
749
|
+
imageInput?: boolean | undefined;
|
|
750
|
+
} | undefined;
|
|
751
|
+
apiKey?: string | undefined;
|
|
752
|
+
} | undefined;
|
|
753
|
+
app?: {
|
|
754
|
+
model?: {
|
|
755
|
+
id: string;
|
|
756
|
+
name: string;
|
|
757
|
+
description: string;
|
|
758
|
+
featured?: boolean | undefined;
|
|
759
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
760
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
761
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
710
762
|
imageInput?: boolean | undefined;
|
|
711
763
|
} | undefined;
|
|
712
764
|
apiKey?: string | undefined;
|
|
@@ -812,9 +864,9 @@ export declare const chatPlaneHandlers: readonly [import("@adviser/cement").Even
|
|
|
812
864
|
name: string;
|
|
813
865
|
description: string;
|
|
814
866
|
featured?: boolean | undefined;
|
|
815
|
-
preSelected?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
816
|
-
fallbackFor?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
817
|
-
supports?: ("app" | "chat" | "img" | "img-edit")[] | undefined;
|
|
867
|
+
preSelected?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
868
|
+
fallbackFor?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
869
|
+
supports?: ("app" | "chat" | "codegen" | "img" | "img-edit" | "runtime")[] | undefined;
|
|
818
870
|
imageInput?: boolean | undefined;
|
|
819
871
|
}[];
|
|
820
872
|
} | import("@vibes.diy/api-types").VibesDiyError>, import("@adviser/cement").EventoHandler<{
|