@vibes.diy/api-types 2.0.0-dev-cli-j → 2.0.0-dev-cli-l
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/README.md +20 -5
- package/chat.d.ts +684 -209
- package/chat.js +55 -24
- package/chat.js.map +1 -1
- package/common.d.ts +7 -2
- package/common.js +6 -2
- package/common.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/invite.d.ts +11 -11
- package/package.json +7 -7
- package/prompt.d.ts +200 -0
- package/prompt.js +45 -0
- package/prompt.js.map +1 -0
- package/settings.d.ts +30 -30
- package/vibes-diy-api.d.ts +2 -2
package/chat.js
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
import { type } from "arktype";
|
|
2
|
-
import { BlockMsgs, CoercedDate,
|
|
2
|
+
import { BlockMsgs, CoercedDate, LLMRequest } from "@vibes.diy/call-ai-v2";
|
|
3
3
|
import { dashAuthType, vibeFile } from "./common.js";
|
|
4
|
-
|
|
4
|
+
import { PromptMsgs } from "./prompt.js";
|
|
5
|
+
export const PromptLLMStyle = type("'chat' | 'app' | 'img'");
|
|
6
|
+
export function isPromptLLMStyle(obj) {
|
|
7
|
+
return !(PromptLLMStyle(obj) instanceof type.errors);
|
|
8
|
+
}
|
|
9
|
+
export const PromptFSStyle = type("'fs-update' | 'fs-set'");
|
|
10
|
+
export function isPromptFSStyle(obj) {
|
|
11
|
+
return !(PromptFSStyle(obj) instanceof type.errors);
|
|
12
|
+
}
|
|
13
|
+
export const PromptStyle = PromptLLMStyle.or(PromptFSStyle);
|
|
5
14
|
export const Model = type({
|
|
6
15
|
id: "string",
|
|
7
16
|
name: "string",
|
|
8
17
|
description: "string",
|
|
9
18
|
"featured?": "boolean",
|
|
10
|
-
"preSelected?":
|
|
19
|
+
"preSelected?": PromptStyle.array(),
|
|
11
20
|
});
|
|
12
21
|
export const reqOpenChat = type({
|
|
13
22
|
type: "'vibes.diy.req-open-chat'",
|
|
@@ -15,14 +24,14 @@ export const reqOpenChat = type({
|
|
|
15
24
|
"appSlug?": "string",
|
|
16
25
|
"userSlug?": "string",
|
|
17
26
|
"chatId?": "string",
|
|
18
|
-
mode:
|
|
27
|
+
mode: PromptStyle,
|
|
19
28
|
});
|
|
20
29
|
export const resOpenChat = type({
|
|
21
30
|
type: "'vibes.diy.res-open-chat'",
|
|
22
31
|
appSlug: "string",
|
|
23
32
|
userSlug: "string",
|
|
24
33
|
chatId: "string",
|
|
25
|
-
mode:
|
|
34
|
+
mode: PromptStyle,
|
|
26
35
|
});
|
|
27
36
|
export function isResOpenChat(obj) {
|
|
28
37
|
return !(resOpenChat(obj) instanceof type.errors);
|
|
@@ -60,36 +69,58 @@ export const reqPromptImageChatSection = type({
|
|
|
60
69
|
export function isReqPromptImageChatSection(obj) {
|
|
61
70
|
return !(reqPromptImageChatSection(obj) instanceof type.errors);
|
|
62
71
|
}
|
|
63
|
-
export const
|
|
64
|
-
|
|
65
|
-
type: "
|
|
66
|
-
|
|
72
|
+
export const FSUpdate = type({
|
|
73
|
+
update: vibeFile.array(),
|
|
74
|
+
remove: type({ filename: "string" }).array(),
|
|
75
|
+
});
|
|
76
|
+
export function isFSUpdate(obj) {
|
|
77
|
+
return !(FSUpdate(obj) instanceof type.errors);
|
|
78
|
+
}
|
|
79
|
+
export const reqPromptFSUpdateChatSection = type({
|
|
80
|
+
type: "'vibes.diy.req-prompt-chat-section'",
|
|
81
|
+
mode: "'fs-update'",
|
|
82
|
+
auth: dashAuthType,
|
|
67
83
|
chatId: "string",
|
|
68
|
-
userSlug: "string",
|
|
69
|
-
appSlug: "string",
|
|
70
|
-
promptId: "string",
|
|
71
84
|
outerTid: "string",
|
|
85
|
+
"refFsId?": "string",
|
|
86
|
+
fsUpdate: FSUpdate,
|
|
72
87
|
});
|
|
73
|
-
export function
|
|
74
|
-
return !(
|
|
88
|
+
export function isReqPromptFSUpdateChatSection(obj) {
|
|
89
|
+
return !(reqPromptFSUpdateChatSection(obj) instanceof type.errors);
|
|
75
90
|
}
|
|
76
|
-
export const
|
|
77
|
-
type: "'vibes.diy.req-
|
|
91
|
+
export const reqPromptFSSetChatSection = type({
|
|
92
|
+
type: "'vibes.diy.req-prompt-chat-section'",
|
|
93
|
+
mode: "'fs-set'",
|
|
78
94
|
auth: dashAuthType,
|
|
79
95
|
chatId: "string",
|
|
80
96
|
outerTid: "string",
|
|
81
|
-
|
|
97
|
+
fsSet: vibeFile.array(),
|
|
82
98
|
});
|
|
83
|
-
export function
|
|
84
|
-
return !(
|
|
99
|
+
export function isReqPromptFSSetChatSection(obj) {
|
|
100
|
+
return !(reqPromptFSSetChatSection(obj) instanceof type.errors);
|
|
101
|
+
}
|
|
102
|
+
export const reqPromptLLMChatSection = reqCreationPromptChatSection
|
|
103
|
+
.or(reqPromptApplicationChatSection)
|
|
104
|
+
.or(reqPromptImageChatSection);
|
|
105
|
+
export function isReqPromptLLMChatSection(obj) {
|
|
106
|
+
return !(reqPromptLLMChatSection(obj) instanceof type.errors);
|
|
85
107
|
}
|
|
86
|
-
export const
|
|
87
|
-
|
|
108
|
+
export const reqPromptFSChatSection = reqPromptFSUpdateChatSection.or(reqPromptFSSetChatSection);
|
|
109
|
+
export function isReqPromptFSChatSection(obj) {
|
|
110
|
+
return !(reqPromptFSChatSection(obj) instanceof type.errors);
|
|
111
|
+
}
|
|
112
|
+
export const reqPromptChatSection = reqPromptLLMChatSection.or(reqPromptFSChatSection);
|
|
113
|
+
export const resPromptChatSection = type({
|
|
114
|
+
type: "'vibes.diy.res-prompt-chat-section'",
|
|
115
|
+
mode: PromptStyle,
|
|
88
116
|
chatId: "string",
|
|
117
|
+
userSlug: "string",
|
|
118
|
+
appSlug: "string",
|
|
119
|
+
promptId: "string",
|
|
89
120
|
outerTid: "string",
|
|
90
|
-
})
|
|
91
|
-
export function
|
|
92
|
-
return !(
|
|
121
|
+
});
|
|
122
|
+
export function isResPromptChatSection(obj) {
|
|
123
|
+
return !(resPromptChatSection(obj) instanceof type.errors);
|
|
93
124
|
}
|
|
94
125
|
export const PromptAndBlockMsgs = PromptMsgs.or(BlockMsgs);
|
|
95
126
|
export const sectionEvent = type({
|
package/chat.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../jsr/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"chat.js","sourceRoot":"","sources":["../jsr/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAEzC,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,CAAC,wBAAwB,CAAC,CAAC;AAE7D,MAAM,UAAU,gBAAgB,CAAC,GAAY;IAC3C,OAAO,CAAC,CAAC,cAAc,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACvD,CAAC;AAED,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,CAAC,wBAAwB,CAAC,CAAC;AAE5D,MAAM,UAAU,eAAe,CAAC,GAAY;IAC1C,OAAO,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACtD,CAAC;AAED,MAAM,CAAC,MAAM,WAAW,GAAG,cAAc,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC;AAG5D,MAAM,CAAC,MAAM,KAAK,GAAG,IAAI,CAAC;IACxB,EAAE,EAAE,QAAQ;IACZ,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,QAAQ;IACrB,WAAW,EAAE,SAAS;IACtB,cAAc,EAAE,WAAW,CAAC,KAAK,EAAE;CACpC,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,IAAI,EAAE,YAAY;IAClB,UAAU,EAAE,QAAQ;IACpB,WAAW,EAAE,QAAQ;IACrB,SAAS,EAAE,QAAQ;IACnB,IAAI,EAAE,WAAW;CAClB,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,CAAC;IAC9B,IAAI,EAAE,2BAA2B;IACjC,OAAO,EAAE,QAAQ;IACjB,QAAQ,EAAE,QAAQ;IAClB,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,WAAW;CAClB,CAAC,CAAC;AAIH,MAAM,UAAU,aAAa,CAAC,GAAY;IACxC,OAAO,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC;IAC/C,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,QAAQ;IACd,IAAI,EAAE,YAAY;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,MAAM,EAAE,UAAU;CACnB,CAAC,CAAC;AAEH,MAAM,UAAU,8BAA8B,CAAC,GAAY;IACzD,OAAO,CAAC,CAAC,4BAA4B,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC;IAClD,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,YAAY;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,MAAM,EAAE,UAAU;CACnB,CAAC,CAAC;AAEH,MAAM,UAAU,iCAAiC,CAAC,GAAY;IAC5D,OAAO,CAAC,CAAC,+BAA+B,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACxE,CAAC;AAED,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC;IAC5C,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,YAAY;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,MAAM,EAAE,UAAU;CACnB,CAAC,CAAC;AAEH,MAAM,UAAU,2BAA2B,CAAC,GAAY;IACtD,OAAO,CAAC,CAAC,yBAAyB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAClE,CAAC;AAED,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,CAAC;IAE3B,MAAM,EAAE,QAAQ,CAAC,KAAK,EAAE;IAExB,MAAM,EAAE,IAAI,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAC,KAAK,EAAE;CAC7C,CAAC,CAAC;AAEH,MAAM,UAAU,UAAU,CAAC,GAAY;IACrC,OAAO,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACjD,CAAC;AAED,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC;IAC/C,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,aAAa;IACnB,IAAI,EAAE,YAAY;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,QAAQ;IACpB,QAAQ,EAAE,QAAQ;CACnB,CAAC,CAAC;AAEH,MAAM,UAAU,8BAA8B,CAAC,GAAY;IACzD,OAAO,CAAC,CAAC,4BAA4B,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC;IAC5C,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,UAAU;IAChB,IAAI,EAAE,YAAY;IAClB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,KAAK,EAAE,QAAQ,CAAC,KAAK,EAAE;CACxB,CAAC,CAAC;AAEH,MAAM,UAAU,2BAA2B,CAAC,GAAY;IACtD,OAAO,CAAC,CAAC,yBAAyB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAClE,CAAC;AAED,MAAM,CAAC,MAAM,uBAAuB,GAAG,4BAA4B;KAChE,EAAE,CAAC,+BAA+B,CAAC;KACnC,EAAE,CAAC,yBAAyB,CAAC,CAAC;AAIjC,MAAM,UAAU,yBAAyB,CAAC,GAAY;IACpD,OAAO,CAAC,CAAC,uBAAuB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAChE,CAAC;AAED,MAAM,CAAC,MAAM,sBAAsB,GAAG,4BAA4B,CAAC,EAAE,CAAC,yBAAyB,CAAC,CAAC;AAIjG,MAAM,UAAU,wBAAwB,CAAC,GAAY;IACnD,OAAO,CAAC,CAAC,sBAAsB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAC/D,CAAC;AAED,MAAM,CAAC,MAAM,oBAAoB,GAAG,uBAAuB,CAAC,EAAE,CAAC,sBAAsB,CAAC,CAAC;AAIvF,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,CAAC;IACvC,IAAI,EAAE,qCAAqC;IAC3C,IAAI,EAAE,WAAW;IACjB,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,QAAQ;IACjB,QAAQ,EAAE,QAAQ;IAClB,QAAQ,EAAE,QAAQ;CACnB,CAAC,CAAC;AAGH,MAAM,UAAU,sBAAsB,CAAC,GAAY;IACjD,OAAO,CAAC,CAAC,oBAAoB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAC7D,CAAC;AAqCD,MAAM,CAAC,MAAM,kBAAkB,GAAG,UAAU,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;AAG3D,MAAM,CAAC,MAAM,YAAY,GAAG,IAAI,CAAC;IAC/B,IAAI,EAAE,2BAA2B;IACjC,MAAM,EAAE,QAAQ;IAChB,QAAQ,EAAE,QAAQ;IAClB,QAAQ,EAAE,QAAQ;IAClB,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,CAAC,kBAAkB,EAAE,IAAI,CAAC;CACnC,CAAC,CAAC;AAIH,MAAM,UAAU,cAAc,CAAC,GAAY;IACzC,OAAO,CAAC,CAAC,YAAY,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACrD,CAAC;AAED,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,CAAC;IAC7B,IAAI,EAAE,2BAA2B;IACjC,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,QAAQ;IACjB,IAAI,EAAE,QAAQ;IACd,YAAY,EAAE,QAAQ;IACtB,OAAO,EAAE,QAAQ;CAClB,CAAC,CAAC;AAGH,MAAM,UAAU,YAAY,CAAC,GAAY;IACvC,OAAO,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACnD,CAAC;AAED,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,CAAC;IAChC,IAAI,EAAE,6BAA6B;CACpC,CAAC,CAAC;AAEH,MAAM,UAAU,eAAe,CAAC,GAAY;IAC1C,OAAO,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACtD,CAAC;AAED,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,CAAC;IAChC,IAAI,EAAE,6BAA6B;IACnC,MAAM,EAAE,KAAK,CAAC,KAAK,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,UAAU,eAAe,CAAC,GAAY;IAC1C,OAAO,CAAC,CAAC,aAAa,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACtD,CAAC"}
|
package/common.d.ts
CHANGED
|
@@ -157,12 +157,17 @@ export declare const vibeFile: import("arktype/internal/variants/object.ts").Obj
|
|
|
157
157
|
}, {}>;
|
|
158
158
|
export type VibeFile = typeof vibeFile.infer;
|
|
159
159
|
export declare const resError: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
160
|
-
type: "vibes.diy.error";
|
|
161
|
-
message
|
|
160
|
+
type: "vibes.diy.error" | "vibes.diy.res-error";
|
|
161
|
+
message?: string | undefined;
|
|
162
162
|
code?: string | undefined;
|
|
163
163
|
stack?: string[] | undefined;
|
|
164
|
+
error?: {
|
|
165
|
+
message: string;
|
|
166
|
+
code?: string | undefined;
|
|
167
|
+
} | undefined;
|
|
164
168
|
}, {}>;
|
|
165
169
|
export type ResError = typeof resError.infer;
|
|
170
|
+
export declare function isResError(obj: unknown): obj is ResError;
|
|
166
171
|
export type CodeID = string;
|
|
167
172
|
export type EnvID = string;
|
|
168
173
|
export declare const FSMode: import("arktype/internal/variants/string.ts").StringType<"dev" | "production", {}>;
|
package/common.js
CHANGED
|
@@ -105,11 +105,15 @@ export const VibeUint8AssetRef = type({
|
|
|
105
105
|
}).and(baseFileProps);
|
|
106
106
|
export const vibeFile = type(VibeCodeBlock.or(VibeCodeRef).or(VibeStrAssetBlock).or(VibeStrAssetRef).or(VibeUint8AssetBlock).or(VibeUint8AssetRef));
|
|
107
107
|
export const resError = type({
|
|
108
|
-
type: "'vibes.diy.error'",
|
|
109
|
-
message: "string",
|
|
108
|
+
type: "'vibes.diy.error'|'vibes.diy.res-error'",
|
|
109
|
+
"message?": "string",
|
|
110
110
|
"code?": "string",
|
|
111
111
|
"stack?": "string[]",
|
|
112
|
+
"error?": type({ message: "string", "code?": "string" }),
|
|
112
113
|
});
|
|
114
|
+
export function isResError(obj) {
|
|
115
|
+
return !(resError(obj) instanceof type.errors);
|
|
116
|
+
}
|
|
113
117
|
export const FSMode = type("'production'|'dev'");
|
|
114
118
|
export const AppSlugUserSlug = type({
|
|
115
119
|
appSlug: "string",
|
package/common.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../jsr/common.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../jsr/common.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../jsr/index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,cAAc,yBAAyB,CAAC;AACxC,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,qBAAqB,CAAC;AAEpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAE5B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../jsr/index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,cAAc,yBAAyB,CAAC;AACxC,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,qBAAqB,CAAC;AAEpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAE5B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAE1B,cAAc,aAAa,CAAC;AAQ5B,MAAM,UAAU,eAAe,CAAC,MAAmB;IACjD,OAAO,MAAM,CAAC,IAAI,KAAK,UAAU,CAAC;AACpC,CAAC;AACD,MAAM,UAAU,gBAAgB,CAAC,MAAmB;IAClD,OAAO,MAAM,CAAC,IAAI,KAAK,WAAW,CAAC;AACrC,CAAC;AAUD,MAAM,UAAU,qBAAqB,CAAC,MAAmB;IACvD,OAAO,MAAM,CAAC,IAAI,KAAK,gBAAgB,CAAC;AAC1C,CAAC"}
|
package/invite.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare const AIParams: import("arktype/internal/variants/object.ts").Obj
|
|
|
11
11
|
name: string;
|
|
12
12
|
description: string;
|
|
13
13
|
featured?: boolean | undefined;
|
|
14
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
14
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
15
15
|
};
|
|
16
16
|
apiKey?: string | undefined;
|
|
17
17
|
}, {}>;
|
|
@@ -568,7 +568,7 @@ export declare const ActiveModelSettingBase: import("arktype/internal/variants/o
|
|
|
568
568
|
name: string;
|
|
569
569
|
description: string;
|
|
570
570
|
featured?: boolean | undefined;
|
|
571
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
571
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
572
572
|
};
|
|
573
573
|
apiKey?: string | undefined;
|
|
574
574
|
};
|
|
@@ -581,7 +581,7 @@ export declare const ActiveModelSettingChat: import("arktype/internal/variants/o
|
|
|
581
581
|
name: string;
|
|
582
582
|
description: string;
|
|
583
583
|
featured?: boolean | undefined;
|
|
584
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
584
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
585
585
|
};
|
|
586
586
|
apiKey?: string | undefined;
|
|
587
587
|
};
|
|
@@ -597,7 +597,7 @@ export declare const ActiveModelSettingApp: import("arktype/internal/variants/ob
|
|
|
597
597
|
name: string;
|
|
598
598
|
description: string;
|
|
599
599
|
featured?: boolean | undefined;
|
|
600
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
600
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
601
601
|
};
|
|
602
602
|
apiKey?: string | undefined;
|
|
603
603
|
};
|
|
@@ -613,7 +613,7 @@ export declare const ActiveModelSettingImg: import("arktype/internal/variants/ob
|
|
|
613
613
|
name: string;
|
|
614
614
|
description: string;
|
|
615
615
|
featured?: boolean | undefined;
|
|
616
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
616
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
617
617
|
};
|
|
618
618
|
apiKey?: string | undefined;
|
|
619
619
|
};
|
|
@@ -629,7 +629,7 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
629
629
|
name: string;
|
|
630
630
|
description: string;
|
|
631
631
|
featured?: boolean | undefined;
|
|
632
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
632
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
633
633
|
};
|
|
634
634
|
apiKey?: string | undefined;
|
|
635
635
|
};
|
|
@@ -642,7 +642,7 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
642
642
|
name: string;
|
|
643
643
|
description: string;
|
|
644
644
|
featured?: boolean | undefined;
|
|
645
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
645
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
646
646
|
};
|
|
647
647
|
apiKey?: string | undefined;
|
|
648
648
|
};
|
|
@@ -655,7 +655,7 @@ export declare const ActiveModelSetting: import("arktype/internal/variants/objec
|
|
|
655
655
|
name: string;
|
|
656
656
|
description: string;
|
|
657
657
|
featured?: boolean | undefined;
|
|
658
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
658
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
659
659
|
};
|
|
660
660
|
apiKey?: string | undefined;
|
|
661
661
|
};
|
|
@@ -827,7 +827,7 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
827
827
|
name: string;
|
|
828
828
|
description: string;
|
|
829
829
|
featured?: boolean | undefined;
|
|
830
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
830
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
831
831
|
};
|
|
832
832
|
apiKey?: string | undefined;
|
|
833
833
|
};
|
|
@@ -840,7 +840,7 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
840
840
|
name: string;
|
|
841
841
|
description: string;
|
|
842
842
|
featured?: boolean | undefined;
|
|
843
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
843
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
844
844
|
};
|
|
845
845
|
apiKey?: string | undefined;
|
|
846
846
|
};
|
|
@@ -853,7 +853,7 @@ export declare const ActiveEntry: import("arktype/internal/variants/object.ts").
|
|
|
853
853
|
name: string;
|
|
854
854
|
description: string;
|
|
855
855
|
featured?: boolean | undefined;
|
|
856
|
-
preSelected?: ("app" | "chat" | "img")[] | undefined;
|
|
856
|
+
preSelected?: ("app" | "chat" | "fs-set" | "fs-update" | "img")[] | undefined;
|
|
857
857
|
};
|
|
858
858
|
apiKey?: string | undefined;
|
|
859
859
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibes.diy/api-types",
|
|
3
|
-
"version": "2.0.0-dev-cli-
|
|
3
|
+
"version": "2.0.0-dev-cli-l",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@adviser/cement": "~0.5.34",
|
|
11
11
|
"@ark/json-schema": "~0.0.4",
|
|
12
|
-
"@cloudflare/workers-types": "~4.
|
|
13
|
-
"@fireproof/core-runtime": "~0.24.
|
|
14
|
-
"@fireproof/core-types-base": "~0.24.
|
|
15
|
-
"@fireproof/core-types-protocols-cloud": "~0.24.
|
|
16
|
-
"@fireproof/core-types-protocols-dashboard": "~0.24.
|
|
17
|
-
"@vibes.diy/call-ai-v2": "2.0.0-dev-cli-
|
|
12
|
+
"@cloudflare/workers-types": "~4.20260402.1",
|
|
13
|
+
"@fireproof/core-runtime": "~0.24.16",
|
|
14
|
+
"@fireproof/core-types-base": "~0.24.16",
|
|
15
|
+
"@fireproof/core-types-protocols-cloud": "~0.24.16",
|
|
16
|
+
"@fireproof/core-types-protocols-dashboard": "~0.24.16",
|
|
17
|
+
"@vibes.diy/call-ai-v2": "2.0.0-dev-cli-l",
|
|
18
18
|
"arktype": "~2.2.0"
|
|
19
19
|
},
|
|
20
20
|
"repository": {
|
package/prompt.d.ts
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
export declare const PromptBase: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
2
|
+
streamId: string;
|
|
3
|
+
chatId: string;
|
|
4
|
+
seq: number;
|
|
5
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
6
|
+
}, {}>;
|
|
7
|
+
export declare const PromptReq: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
8
|
+
streamId: string;
|
|
9
|
+
chatId: string;
|
|
10
|
+
seq: number;
|
|
11
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
12
|
+
type: "prompt.req";
|
|
13
|
+
request: {
|
|
14
|
+
model?: string | undefined;
|
|
15
|
+
messages: {
|
|
16
|
+
role: "assistant" | "system" | "user";
|
|
17
|
+
content: {
|
|
18
|
+
type: "text";
|
|
19
|
+
text: string;
|
|
20
|
+
}[];
|
|
21
|
+
}[];
|
|
22
|
+
stream?: boolean | undefined;
|
|
23
|
+
temperature?: number | undefined;
|
|
24
|
+
max_tokens?: number | undefined;
|
|
25
|
+
top_p?: number | undefined;
|
|
26
|
+
logprobs?: boolean | undefined;
|
|
27
|
+
top_logsprobs?: number | undefined;
|
|
28
|
+
frequency_penalty?: number | undefined;
|
|
29
|
+
presence_penalty?: number | undefined;
|
|
30
|
+
stop?: string | string[] | undefined;
|
|
31
|
+
};
|
|
32
|
+
}, {}>;
|
|
33
|
+
export type PromptReq = typeof PromptReq.infer;
|
|
34
|
+
export declare function isPromptReq(msg: unknown): msg is PromptReq;
|
|
35
|
+
export declare const PromptFS: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
36
|
+
streamId: string;
|
|
37
|
+
chatId: string;
|
|
38
|
+
seq: number;
|
|
39
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
40
|
+
type: "prompt.fs";
|
|
41
|
+
fileSystem: ({
|
|
42
|
+
filename: string;
|
|
43
|
+
entryPoint?: boolean | undefined;
|
|
44
|
+
mimetype?: string | undefined;
|
|
45
|
+
type: "code-block";
|
|
46
|
+
lang: string;
|
|
47
|
+
content: string;
|
|
48
|
+
} | {
|
|
49
|
+
filename: string;
|
|
50
|
+
entryPoint?: boolean | undefined;
|
|
51
|
+
mimetype?: string | undefined;
|
|
52
|
+
type: "code-ref";
|
|
53
|
+
refId: string;
|
|
54
|
+
} | {
|
|
55
|
+
filename: string;
|
|
56
|
+
entryPoint?: boolean | undefined;
|
|
57
|
+
mimetype?: string | undefined;
|
|
58
|
+
type: "str-asset-block";
|
|
59
|
+
content: string;
|
|
60
|
+
} | {
|
|
61
|
+
filename: string;
|
|
62
|
+
entryPoint?: boolean | undefined;
|
|
63
|
+
mimetype?: string | undefined;
|
|
64
|
+
type: "str-asset-ref";
|
|
65
|
+
refId: string;
|
|
66
|
+
} | {
|
|
67
|
+
filename: string;
|
|
68
|
+
entryPoint?: boolean | undefined;
|
|
69
|
+
mimetype?: string | undefined;
|
|
70
|
+
type: "uint8-asset-block";
|
|
71
|
+
content: Uint8Array<ArrayBuffer>;
|
|
72
|
+
} | {
|
|
73
|
+
filename: string;
|
|
74
|
+
entryPoint?: boolean | undefined;
|
|
75
|
+
mimetype?: string | undefined;
|
|
76
|
+
type: "uint8-asset-ref";
|
|
77
|
+
refId: string;
|
|
78
|
+
})[];
|
|
79
|
+
}, {}>;
|
|
80
|
+
export type PromptFS = typeof PromptFS.infer;
|
|
81
|
+
export declare function isPromptFSSet(msg: unknown): msg is PromptFS;
|
|
82
|
+
export declare const PromptBlockBegin: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
83
|
+
streamId: string;
|
|
84
|
+
chatId: string;
|
|
85
|
+
seq: number;
|
|
86
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
87
|
+
type: "prompt.block-begin";
|
|
88
|
+
}, {}>;
|
|
89
|
+
export type PromptBlockBegin = typeof PromptBlockBegin.infer;
|
|
90
|
+
export declare const PromptError: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
91
|
+
streamId: string;
|
|
92
|
+
chatId: string;
|
|
93
|
+
seq: number;
|
|
94
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
95
|
+
type: "prompt.error";
|
|
96
|
+
error: string;
|
|
97
|
+
}, {}>;
|
|
98
|
+
export type PromptError = typeof PromptError.infer;
|
|
99
|
+
export declare function isPromptError(msg: unknown): msg is PromptError;
|
|
100
|
+
export declare const PromptBlockEnd: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
101
|
+
streamId: string;
|
|
102
|
+
chatId: string;
|
|
103
|
+
seq: number;
|
|
104
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
105
|
+
type: "prompt.block-end";
|
|
106
|
+
}, {}>;
|
|
107
|
+
export type PromptBlockEnd = typeof PromptBlockEnd.infer;
|
|
108
|
+
export declare const PromptMsgs: import("arktype/internal/variants/object.ts").ObjectType<{
|
|
109
|
+
streamId: string;
|
|
110
|
+
chatId: string;
|
|
111
|
+
seq: number;
|
|
112
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
113
|
+
type: "prompt.req";
|
|
114
|
+
request: {
|
|
115
|
+
model?: string | undefined;
|
|
116
|
+
messages: {
|
|
117
|
+
role: "assistant" | "system" | "user";
|
|
118
|
+
content: {
|
|
119
|
+
type: "text";
|
|
120
|
+
text: string;
|
|
121
|
+
}[];
|
|
122
|
+
}[];
|
|
123
|
+
stream?: boolean | undefined;
|
|
124
|
+
temperature?: number | undefined;
|
|
125
|
+
max_tokens?: number | undefined;
|
|
126
|
+
top_p?: number | undefined;
|
|
127
|
+
logprobs?: boolean | undefined;
|
|
128
|
+
top_logsprobs?: number | undefined;
|
|
129
|
+
frequency_penalty?: number | undefined;
|
|
130
|
+
presence_penalty?: number | undefined;
|
|
131
|
+
stop?: string | string[] | undefined;
|
|
132
|
+
};
|
|
133
|
+
} | {
|
|
134
|
+
streamId: string;
|
|
135
|
+
chatId: string;
|
|
136
|
+
seq: number;
|
|
137
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
138
|
+
type: "prompt.fs";
|
|
139
|
+
fileSystem: ({
|
|
140
|
+
filename: string;
|
|
141
|
+
entryPoint?: boolean | undefined;
|
|
142
|
+
mimetype?: string | undefined;
|
|
143
|
+
type: "code-block";
|
|
144
|
+
lang: string;
|
|
145
|
+
content: string;
|
|
146
|
+
} | {
|
|
147
|
+
filename: string;
|
|
148
|
+
entryPoint?: boolean | undefined;
|
|
149
|
+
mimetype?: string | undefined;
|
|
150
|
+
type: "code-ref";
|
|
151
|
+
refId: string;
|
|
152
|
+
} | {
|
|
153
|
+
filename: string;
|
|
154
|
+
entryPoint?: boolean | undefined;
|
|
155
|
+
mimetype?: string | undefined;
|
|
156
|
+
type: "str-asset-block";
|
|
157
|
+
content: string;
|
|
158
|
+
} | {
|
|
159
|
+
filename: string;
|
|
160
|
+
entryPoint?: boolean | undefined;
|
|
161
|
+
mimetype?: string | undefined;
|
|
162
|
+
type: "str-asset-ref";
|
|
163
|
+
refId: string;
|
|
164
|
+
} | {
|
|
165
|
+
filename: string;
|
|
166
|
+
entryPoint?: boolean | undefined;
|
|
167
|
+
mimetype?: string | undefined;
|
|
168
|
+
type: "uint8-asset-block";
|
|
169
|
+
content: Uint8Array<ArrayBuffer>;
|
|
170
|
+
} | {
|
|
171
|
+
filename: string;
|
|
172
|
+
entryPoint?: boolean | undefined;
|
|
173
|
+
mimetype?: string | undefined;
|
|
174
|
+
type: "uint8-asset-ref";
|
|
175
|
+
refId: string;
|
|
176
|
+
})[];
|
|
177
|
+
} | {
|
|
178
|
+
streamId: string;
|
|
179
|
+
chatId: string;
|
|
180
|
+
seq: number;
|
|
181
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
182
|
+
type: "prompt.block-begin";
|
|
183
|
+
} | {
|
|
184
|
+
streamId: string;
|
|
185
|
+
chatId: string;
|
|
186
|
+
seq: number;
|
|
187
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
188
|
+
type: "prompt.error";
|
|
189
|
+
error: string;
|
|
190
|
+
} | {
|
|
191
|
+
streamId: string;
|
|
192
|
+
chatId: string;
|
|
193
|
+
seq: number;
|
|
194
|
+
timestamp: Date | ((In: string) => import("arktype/internal/attributes.ts").To<Date>);
|
|
195
|
+
type: "prompt.block-end";
|
|
196
|
+
}, {}>;
|
|
197
|
+
export type PromptMsgs = typeof PromptMsgs.infer;
|
|
198
|
+
export declare const isPromptMsg: (msg: unknown) => msg is PromptMsgs;
|
|
199
|
+
export declare function isPromptBlockBegin(msg: unknown): msg is PromptBlockBegin;
|
|
200
|
+
export declare function isPromptBlockEnd(msg: unknown): msg is PromptBlockEnd;
|
package/prompt.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { CoercedDate, LLMRequest } from "@vibes.diy/call-ai-v2";
|
|
2
|
+
import { type } from "arktype";
|
|
3
|
+
import { vibeFile } from "./common.js";
|
|
4
|
+
export const PromptBase = type({
|
|
5
|
+
streamId: "string",
|
|
6
|
+
chatId: "string",
|
|
7
|
+
seq: "number",
|
|
8
|
+
timestamp: CoercedDate,
|
|
9
|
+
});
|
|
10
|
+
export const PromptReq = type({
|
|
11
|
+
type: "'prompt.req'",
|
|
12
|
+
request: LLMRequest,
|
|
13
|
+
}).and(PromptBase);
|
|
14
|
+
export function isPromptReq(msg) {
|
|
15
|
+
return !(PromptReq(msg) instanceof type.errors);
|
|
16
|
+
}
|
|
17
|
+
export const PromptFS = type({
|
|
18
|
+
type: "'prompt.fs'",
|
|
19
|
+
fileSystem: vibeFile.array(),
|
|
20
|
+
}).and(PromptBase);
|
|
21
|
+
export function isPromptFSSet(msg) {
|
|
22
|
+
return !(PromptFS(msg) instanceof type.errors);
|
|
23
|
+
}
|
|
24
|
+
export const PromptBlockBegin = type({
|
|
25
|
+
type: "'prompt.block-begin'",
|
|
26
|
+
}).and(PromptBase);
|
|
27
|
+
export const PromptError = type({
|
|
28
|
+
type: "'prompt.error'",
|
|
29
|
+
error: "string",
|
|
30
|
+
}).and(PromptBase);
|
|
31
|
+
export function isPromptError(msg) {
|
|
32
|
+
return !(PromptError(msg) instanceof type.errors);
|
|
33
|
+
}
|
|
34
|
+
export const PromptBlockEnd = type({
|
|
35
|
+
type: "'prompt.block-end'",
|
|
36
|
+
}).and(PromptBase);
|
|
37
|
+
export const PromptMsgs = PromptBlockBegin.or(PromptBlockEnd).or(PromptReq).or(PromptError).or(PromptFS);
|
|
38
|
+
export const isPromptMsg = (msg) => !(PromptMsgs(msg) instanceof type.errors);
|
|
39
|
+
export function isPromptBlockBegin(msg) {
|
|
40
|
+
return !(PromptBlockBegin(msg) instanceof type.errors);
|
|
41
|
+
}
|
|
42
|
+
export function isPromptBlockEnd(msg) {
|
|
43
|
+
return !(PromptBlockEnd(msg) instanceof type.errors);
|
|
44
|
+
}
|
|
45
|
+
//# sourceMappingURL=prompt.js.map
|
package/prompt.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prompt.js","sourceRoot":"","sources":["../jsr/prompt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAChE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,MAAM,CAAC,MAAM,UAAU,GAAG,IAAI,CAAC;IAC7B,QAAQ,EAAE,QAAQ;IAClB,MAAM,EAAE,QAAQ;IAChB,GAAG,EAAE,QAAQ;IACb,SAAS,EAAE,WAAW;CACvB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,CAAC;IAC5B,IAAI,EAAE,cAAc;IACpB,OAAO,EAAE,UAAU;CACpB,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAGnB,MAAM,UAAU,WAAW,CAAC,GAAY;IACtC,OAAO,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAClD,CAAC;AAYD,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,CAAC;IAC3B,IAAI,EAAE,aAAa;IACnB,UAAU,EAAE,QAAQ,CAAC,KAAK,EAAE;CAC7B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAGnB,MAAM,UAAU,aAAa,CAAC,GAAY;IACxC,OAAO,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACjD,CAAC;AAED,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,CAAC;IACnC,IAAI,EAAE,sBAAsB;CAC7B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAInB,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,CAAC;IAC9B,IAAI,EAAE,gBAAgB;IACtB,KAAK,EAAE,QAAQ;CAChB,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAInB,MAAM,UAAU,aAAa,CAAC,GAAY;IACxC,OAAO,CAAC,CAAC,WAAW,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACpD,CAAC;AAED,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,CAAC;IACjC,IAAI,EAAE,oBAAoB;CAC3B,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAInB,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC;AAIzG,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,GAAY,EAAqB,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AAE1G,MAAM,UAAU,kBAAkB,CAAC,GAAY;IAC7C,OAAO,CAAC,CAAC,gBAAgB,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACzD,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,GAAY;IAC3C,OAAO,CAAC,CAAC,cAAc,CAAC,GAAG,CAAC,YAAY,IAAI,CAAC,MAAM,CAAC,CAAC;AACvD,CAAC"}
|