@llumiverse/core 0.11.0 → 0.12.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/README.md +1 -0
- package/lib/cjs/Driver.js +1 -1
- package/lib/cjs/types.js +1 -0
- package/lib/cjs/types.js.map +1 -1
- package/lib/esm/Driver.js +1 -1
- package/lib/esm/types.js +1 -0
- package/lib/esm/types.js.map +1 -1
- package/lib/types/types.d.ts +45 -1
- package/lib/types/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/Driver.ts +1 -1
- package/src/types.ts +53 -0
- package/lib/cjs/formatters.js +0 -117
- package/lib/cjs/formatters.js.map +0 -1
- package/lib/cjs/test.js +0 -55
- package/lib/cjs/test.js.map +0 -1
- package/lib/esm/formatters.js +0 -113
- package/lib/esm/formatters.js.map +0 -1
- package/lib/esm/test.js +0 -50
- package/lib/esm/test.js.map +0 -1
- package/lib/tsconfig.tsbuildinfo +0 -1
- package/lib/types/formatters.d.ts +0 -5
- package/lib/types/formatters.d.ts.map +0 -1
- package/lib/types/test.d.ts +0 -2
- package/lib/types/test.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ The following LLM platforms are supported in the current version:
|
|
|
19
19
|
| HuggingFace Inference Endpoints | ✅ | ✅ | N/A | N/A |
|
|
20
20
|
| Google Vertex AI | ✅ | ✅ | Partial | In Progress |
|
|
21
21
|
| Together AI| ✅ | ✅ | ✅ | In Progress |
|
|
22
|
+
| Groq | ✅ | ✅ | ✅ | N/A |
|
|
22
23
|
|
|
23
24
|
New capabilities and platform can easily be added by creating a new driver for the platform.
|
|
24
25
|
|
package/lib/cjs/Driver.js
CHANGED
package/lib/cjs/types.js
CHANGED
|
@@ -48,6 +48,7 @@ var BuiltinProviders;
|
|
|
48
48
|
BuiltinProviders["vertexai"] = "vertexai";
|
|
49
49
|
BuiltinProviders["togetherai"] = "togetherai";
|
|
50
50
|
BuiltinProviders["mistralai"] = "mistralai";
|
|
51
|
+
BuiltinProviders["groq"] = "groq";
|
|
51
52
|
//virtual = 'virtual',
|
|
52
53
|
//cohere = 'cohere',
|
|
53
54
|
})(BuiltinProviders || (exports.BuiltinProviders = BuiltinProviders = {}));
|
package/lib/cjs/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":";;;AAmJA,yCAAyC;AACzC,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,2BAAa,CAAA;IACb,qCAAuB,CAAA;AAC3B,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AA8BD,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,4CAA2B,CAAA;IAC3B,oCAAmB,CAAA;AACvB,CAAC,EANW,aAAa,6BAAb,aAAa,QAMxB;AAiBD,IAAY,SAkBX;AAlBD,WAAY,SAAS;IACjB,sCAAyB,CAAA;IACzB,oCAAuB,CAAA;IACvB,sCAAyB,CAAA;IACzB,mDAAsC,CAAA;IACtC,uCAA0B,CAAA;IAC1B,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,0BAAa,CAAA;IACb,0BAAa,CAAA;IACb,wBAAW,CAAA;IACX,uCAA0B,CAAA;IAC1B,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,gCAAmB,CAAA;AACvB,CAAC,EAlBW,SAAS,yBAAT,SAAS,QAkBpB;AAED,oEAAoE;AACpE,MAAM;AAEN,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,qCAAiB,CAAA;IACjB,qDAAiC,CAAA;IACjC,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;IACnB,yCAAqB,CAAA;IACrB,6CAAyB,CAAA;IACzB,2CAAuB,CAAA;IACvB,iCAAa,CAAA;IACb,0BAA0B;IAC1B,oBAAoB;AACxB,CAAC,EAXW,gBAAgB,gCAAhB,gBAAgB,QAW3B;AAyBD,IAAY,iBAKX;AALD,WAAY,iBAAiB;IACzB,wCAAmB,CAAA;IACnB,4CAAuB,CAAA;IACvB,sCAAiB,CAAA;IACjB,4CAAuB,CAAA;AAC3B,CAAC,EALW,iBAAiB,iCAAjB,iBAAiB,QAK5B"}
|
package/lib/esm/Driver.js
CHANGED
package/lib/esm/types.js
CHANGED
|
@@ -45,6 +45,7 @@ export var BuiltinProviders;
|
|
|
45
45
|
BuiltinProviders["vertexai"] = "vertexai";
|
|
46
46
|
BuiltinProviders["togetherai"] = "togetherai";
|
|
47
47
|
BuiltinProviders["mistralai"] = "mistralai";
|
|
48
|
+
BuiltinProviders["groq"] = "groq";
|
|
48
49
|
//virtual = 'virtual',
|
|
49
50
|
//cohere = 'cohere',
|
|
50
51
|
})(BuiltinProviders || (BuiltinProviders = {}));
|
package/lib/esm/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAmJA,yCAAyC;AACzC,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,2BAAa,CAAA;IACb,qCAAuB,CAAA;AAC3B,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AA8BD,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,4CAA2B,CAAA;IAC3B,oCAAmB,CAAA;AACvB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAiBD,MAAM,CAAN,IAAY,SAkBX;AAlBD,WAAY,SAAS;IACjB,sCAAyB,CAAA;IACzB,oCAAuB,CAAA;IACvB,sCAAyB,CAAA;IACzB,mDAAsC,CAAA;IACtC,uCAA0B,CAAA;IAC1B,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,oCAAuB,CAAA;IACvB,0BAAa,CAAA;IACb,0BAAa,CAAA;IACb,wBAAW,CAAA;IACX,uCAA0B,CAAA;IAC1B,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,gCAAmB,CAAA;AACvB,CAAC,EAlBW,SAAS,KAAT,SAAS,QAkBpB;AAED,oEAAoE;AACpE,MAAM;AAEN,MAAM,CAAN,IAAY,gBAWX;AAXD,WAAY,gBAAgB;IACxB,qCAAiB,CAAA;IACjB,qDAAiC,CAAA;IACjC,2CAAuB,CAAA;IACvB,uCAAmB,CAAA;IACnB,yCAAqB,CAAA;IACrB,6CAAyB,CAAA;IACzB,2CAAuB,CAAA;IACvB,iCAAa,CAAA;IACb,0BAA0B;IAC1B,oBAAoB;AACxB,CAAC,EAXW,gBAAgB,KAAhB,gBAAgB,QAW3B;AAyBD,MAAM,CAAN,IAAY,iBAKX;AALD,WAAY,iBAAiB;IACzB,wCAAmB,CAAA;IACnB,4CAAuB,CAAA;IACvB,sCAAiB,CAAA;IACjB,4CAAuB,CAAA;AAC3B,CAAC,EALW,iBAAiB,KAAjB,iBAAiB,QAK5B"}
|
package/lib/types/types.d.ts
CHANGED
|
@@ -42,11 +42,19 @@ export interface ResultValidationError {
|
|
|
42
42
|
export interface Completion<ResultT = any> {
|
|
43
43
|
result: ResultT;
|
|
44
44
|
token_usage?: ExecutionTokenUsage;
|
|
45
|
+
/**
|
|
46
|
+
* The finish reason as reported by the model: stop | length or other model specific values
|
|
47
|
+
*/
|
|
48
|
+
finish_reason?: "stop" | "length" | string;
|
|
45
49
|
/**
|
|
46
50
|
* Set only if a result validation error occured, otherwise if the result is valid the error field is undefined
|
|
47
51
|
* This can only be set if the resultSchema is set and the reuslt could not be parsed as a json or if the result does not match the schema
|
|
48
52
|
*/
|
|
49
53
|
error?: ResultValidationError;
|
|
54
|
+
/**
|
|
55
|
+
* The original response. Only included if the option include_original_response is set to true and the request is made using execute. Not supported when streaming.
|
|
56
|
+
*/
|
|
57
|
+
original_response?: Record<string, any>;
|
|
50
58
|
}
|
|
51
59
|
export interface ExecutionResponse<PromptT = any> extends Completion {
|
|
52
60
|
prompt: PromptT;
|
|
@@ -79,6 +87,41 @@ export interface PromptOptions {
|
|
|
79
87
|
export interface ExecutionOptions extends PromptOptions {
|
|
80
88
|
temperature?: number;
|
|
81
89
|
max_tokens?: number;
|
|
90
|
+
stop_sequence?: string | string[];
|
|
91
|
+
/**
|
|
92
|
+
* restricts the selection of tokens to the “k” most likely options, based on their probabilities
|
|
93
|
+
* Lower values make the model more deterministic, more focused. Examples:
|
|
94
|
+
* - 10 - result will be highly controlled anc contextually relevant
|
|
95
|
+
* - 50 - result will be more creative but maintaining a balance between control and creativity
|
|
96
|
+
* - 100 - will lead to more creative and less predictable outputs
|
|
97
|
+
* It will be ignored on OpenAI since it does not support it
|
|
98
|
+
*/
|
|
99
|
+
top_k?: number;
|
|
100
|
+
/**
|
|
101
|
+
* An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
|
|
102
|
+
* Either use temperature or top_p, not both
|
|
103
|
+
*/
|
|
104
|
+
top_p?: number;
|
|
105
|
+
/**
|
|
106
|
+
* Only supported for OpenAI. Look at OpenAI documentation for more detailsx
|
|
107
|
+
*/
|
|
108
|
+
top_logprobs?: number;
|
|
109
|
+
/**
|
|
110
|
+
* Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.
|
|
111
|
+
* Ignored for models which doesn;t support it
|
|
112
|
+
*/
|
|
113
|
+
presence_penalty?: number;
|
|
114
|
+
/**
|
|
115
|
+
* Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
|
|
116
|
+
* Ignored for models which doesn;t support it
|
|
117
|
+
*/
|
|
118
|
+
frequency_penalty?: number;
|
|
119
|
+
/**
|
|
120
|
+
* If set to true the original response from the target LLM will be included in the response under the original_response field.
|
|
121
|
+
* This is useful for debugging and for some advanced use cases.
|
|
122
|
+
* It is ignored on streaming requests
|
|
123
|
+
*/
|
|
124
|
+
include_original_response?: boolean;
|
|
82
125
|
}
|
|
83
126
|
export declare enum PromptRole {
|
|
84
127
|
safety = "safety",
|
|
@@ -154,7 +197,8 @@ export declare enum BuiltinProviders {
|
|
|
154
197
|
bedrock = "bedrock",
|
|
155
198
|
vertexai = "vertexai",
|
|
156
199
|
togetherai = "togetherai",
|
|
157
|
-
mistralai = "mistralai"
|
|
200
|
+
mistralai = "mistralai",
|
|
201
|
+
groq = "groq"
|
|
158
202
|
}
|
|
159
203
|
export interface DataSource {
|
|
160
204
|
name: string;
|
package/lib/types/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,gBAAgB;IAC7B;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,qBAAqB;IAClC,IAAI,EAAE,kBAAkB,GAAG,YAAY,CAAC;IACxC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,UAAU,CAAC,OAAO,GAAG,GAAG;IAErC,MAAM,EAAE,OAAO,CAAC;IAChB,WAAW,CAAC,EAAE,mBAAmB,CAAC;IAElC;;;OAGG;IACH,KAAK,CAAC,EAAE,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/src/Driver.ts
CHANGED
package/src/types.ts
CHANGED
|
@@ -48,11 +48,22 @@ export interface Completion<ResultT = any> {
|
|
|
48
48
|
result: ResultT;
|
|
49
49
|
token_usage?: ExecutionTokenUsage;
|
|
50
50
|
|
|
51
|
+
/**
|
|
52
|
+
* The finish reason as reported by the model: stop | length or other model specific values
|
|
53
|
+
*/
|
|
54
|
+
finish_reason?: "stop" | "length" | string;
|
|
55
|
+
|
|
51
56
|
/**
|
|
52
57
|
* Set only if a result validation error occured, otherwise if the result is valid the error field is undefined
|
|
53
58
|
* This can only be set if the resultSchema is set and the reuslt could not be parsed as a json or if the result does not match the schema
|
|
54
59
|
*/
|
|
55
60
|
error?: ResultValidationError;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* The original response. Only included if the option include_original_response is set to true and the request is made using execute. Not supported when streaming.
|
|
64
|
+
*/
|
|
65
|
+
original_response?: Record<string, any>;
|
|
66
|
+
|
|
56
67
|
}
|
|
57
68
|
|
|
58
69
|
export interface ExecutionResponse<PromptT = any> extends Completion {
|
|
@@ -91,6 +102,47 @@ export interface PromptOptions {
|
|
|
91
102
|
export interface ExecutionOptions extends PromptOptions {
|
|
92
103
|
temperature?: number;
|
|
93
104
|
max_tokens?: number;
|
|
105
|
+
stop_sequence?: string | string[];
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* restricts the selection of tokens to the “k” most likely options, based on their probabilities
|
|
109
|
+
* Lower values make the model more deterministic, more focused. Examples:
|
|
110
|
+
* - 10 - result will be highly controlled anc contextually relevant
|
|
111
|
+
* - 50 - result will be more creative but maintaining a balance between control and creativity
|
|
112
|
+
* - 100 - will lead to more creative and less predictable outputs
|
|
113
|
+
* It will be ignored on OpenAI since it does not support it
|
|
114
|
+
*/
|
|
115
|
+
top_k?: number;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
|
|
119
|
+
* Either use temperature or top_p, not both
|
|
120
|
+
*/
|
|
121
|
+
top_p?: number;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Only supported for OpenAI. Look at OpenAI documentation for more detailsx
|
|
125
|
+
*/
|
|
126
|
+
top_logprobs?: number;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.
|
|
130
|
+
* Ignored for models which doesn;t support it
|
|
131
|
+
*/
|
|
132
|
+
presence_penalty?: number;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
|
|
136
|
+
* Ignored for models which doesn;t support it
|
|
137
|
+
*/
|
|
138
|
+
frequency_penalty?: number;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* If set to true the original response from the target LLM will be included in the response under the original_response field.
|
|
142
|
+
* This is useful for debugging and for some advanced use cases.
|
|
143
|
+
* It is ignored on streaming requests
|
|
144
|
+
*/
|
|
145
|
+
include_original_response?: boolean;
|
|
94
146
|
}
|
|
95
147
|
|
|
96
148
|
// ============== Prompts ===============
|
|
@@ -183,6 +235,7 @@ export enum BuiltinProviders {
|
|
|
183
235
|
vertexai = 'vertexai',
|
|
184
236
|
togetherai = 'togetherai',
|
|
185
237
|
mistralai = 'mistralai',
|
|
238
|
+
groq = 'groq',
|
|
186
239
|
//virtual = 'virtual',
|
|
187
240
|
//cohere = 'cohere',
|
|
188
241
|
}
|
package/lib/cjs/formatters.js
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PromptFormatters = exports.inferFormatterFromModelName = void 0;
|
|
4
|
-
const types_js_1 = require("./types.js");
|
|
5
|
-
function inferFormatterFromModelName(modelName) {
|
|
6
|
-
const name = modelName.toLowerCase();
|
|
7
|
-
if (name.includes("llama")) {
|
|
8
|
-
return types_js_1.PromptFormats.llama2;
|
|
9
|
-
}
|
|
10
|
-
else if (name.includes("gpt")) {
|
|
11
|
-
return types_js_1.PromptFormats.openai;
|
|
12
|
-
}
|
|
13
|
-
else if (name.includes("claude")) {
|
|
14
|
-
return types_js_1.PromptFormats.claude;
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
return types_js_1.PromptFormats.genericTextLLM;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
exports.inferFormatterFromModelName = inferFormatterFromModelName;
|
|
21
|
-
exports.PromptFormatters = {
|
|
22
|
-
openai: openAI,
|
|
23
|
-
llama2: llama2,
|
|
24
|
-
claude: claude,
|
|
25
|
-
genericTextLLM: genericColonSeparator,
|
|
26
|
-
};
|
|
27
|
-
function openAI(segments) {
|
|
28
|
-
const system = [];
|
|
29
|
-
const others = [];
|
|
30
|
-
const safety = [];
|
|
31
|
-
for (const msg of segments) {
|
|
32
|
-
if (msg.role === types_js_1.PromptRole.system) {
|
|
33
|
-
system.push({ content: msg.content, role: "system" });
|
|
34
|
-
}
|
|
35
|
-
else if (msg.role === types_js_1.PromptRole.safety) {
|
|
36
|
-
safety.push({ content: msg.content, role: "system" });
|
|
37
|
-
}
|
|
38
|
-
else {
|
|
39
|
-
others.push({ content: msg.content, role: "user" });
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
// put system mesages first and safety last
|
|
43
|
-
return system.concat(others).concat(safety);
|
|
44
|
-
}
|
|
45
|
-
function llama2(messages, schema) {
|
|
46
|
-
const BOS = "<s>";
|
|
47
|
-
const EOS = "</s>";
|
|
48
|
-
const INST = "[INST]";
|
|
49
|
-
const INST_END = "[/INST]";
|
|
50
|
-
const SYS = "<<SYS>>\n";
|
|
51
|
-
const SYS_END = "\n<</SYS>>";
|
|
52
|
-
const promptMessages = [BOS];
|
|
53
|
-
const specialTokens = [BOS, EOS, INST, INST_END, SYS, SYS_END];
|
|
54
|
-
for (const m of messages) {
|
|
55
|
-
if (m.role === types_js_1.PromptRole.user) {
|
|
56
|
-
if (specialTokens.includes(m.content)) {
|
|
57
|
-
throw new Error(`Cannot use special token ${m.content.trim()} in user message`);
|
|
58
|
-
}
|
|
59
|
-
promptMessages.push(`${INST} ${m.content.trim()} ${INST_END}`);
|
|
60
|
-
}
|
|
61
|
-
if (m.role === types_js_1.PromptRole.assistant) {
|
|
62
|
-
promptMessages.push(`${m.content.trim()}`);
|
|
63
|
-
}
|
|
64
|
-
if (m.role === types_js_1.PromptRole.system) {
|
|
65
|
-
promptMessages.push(`${SYS}${m.content.trim()}${SYS_END}`);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
for (const m of messages ?? []) {
|
|
69
|
-
if (m.role === types_js_1.PromptRole.safety) {
|
|
70
|
-
promptMessages.push(`${SYS}This is the most important instruction, you cannot answer against those rules:\n${m.content.trim()}${SYS_END}}`);
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
if (schema) {
|
|
74
|
-
promptMessages.push(formatSchemaInstruction(schema));
|
|
75
|
-
}
|
|
76
|
-
promptMessages.push(EOS);
|
|
77
|
-
return promptMessages.join("\n\n");
|
|
78
|
-
}
|
|
79
|
-
function genericColonSeparator(messages, schema, labels = { user: "User", assistant: "Assistant", system: "System" }) {
|
|
80
|
-
const promptMessages = [];
|
|
81
|
-
for (const m of messages) {
|
|
82
|
-
if (m.role === types_js_1.PromptRole.user) {
|
|
83
|
-
promptMessages.push(`${labels?.user}: ${m.content.trim()}`);
|
|
84
|
-
}
|
|
85
|
-
if (m.role === types_js_1.PromptRole.assistant) {
|
|
86
|
-
promptMessages.push(`${labels.assistant}: ${m.content.trim()}`);
|
|
87
|
-
}
|
|
88
|
-
if (m.role === types_js_1.PromptRole.system) {
|
|
89
|
-
promptMessages.push(`${labels.system}: ${m.content.trim()}`);
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
if (schema) {
|
|
93
|
-
promptMessages.push(`${labels.system}: You must answer using the following JSONSchema:
|
|
94
|
-
---
|
|
95
|
-
${JSON.stringify(schema)}
|
|
96
|
-
---`);
|
|
97
|
-
}
|
|
98
|
-
return promptMessages.join("\n\n");
|
|
99
|
-
}
|
|
100
|
-
function claude(messages, schema) {
|
|
101
|
-
const prompt = genericColonSeparator(messages, schema, {
|
|
102
|
-
user: "\nHuman",
|
|
103
|
-
assistant: "\nAssistant",
|
|
104
|
-
system: "\nHuman",
|
|
105
|
-
});
|
|
106
|
-
return "\n\n" + prompt + "\n\nAssistant:";
|
|
107
|
-
}
|
|
108
|
-
function formatSchemaInstruction(schema) {
|
|
109
|
-
const schema_instruction = `<<SYS>>You must answer using the following JSONSchema.
|
|
110
|
-
Do not write anything other than a JSON object corresponding to the schema.
|
|
111
|
-
<schema>
|
|
112
|
-
${JSON.stringify(schema)}
|
|
113
|
-
</schema>
|
|
114
|
-
<</SYS>>`;
|
|
115
|
-
return schema_instruction;
|
|
116
|
-
}
|
|
117
|
-
//# sourceMappingURL=formatters.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.js","sourceRoot":"","sources":["../../src/formatters.ts"],"names":[],"mappings":"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"}
|
package/lib/cjs/test.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const web_1 = require("stream/web");
|
|
7
|
-
const fs_1 = __importDefault(require("fs"));
|
|
8
|
-
async function* asyncReadableIterator(stream) {
|
|
9
|
-
if (stream.readableEncoding) {
|
|
10
|
-
for await (const chunk of stream.iterator({ destroyOnReturn: true })) {
|
|
11
|
-
yield chunk;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
else {
|
|
15
|
-
for await (const chunk of stream.iterator({ destroyOnReturn: true })) {
|
|
16
|
-
yield new Uint8Array(chunk);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
function createReadableStreamFromIterable(iterable) {
|
|
21
|
-
const it = iterable[Symbol.asyncIterator]();
|
|
22
|
-
if (web_1.ReadableStream.from) {
|
|
23
|
-
return web_1.ReadableStream.from();
|
|
24
|
-
}
|
|
25
|
-
else {
|
|
26
|
-
return new web_1.ReadableStream({
|
|
27
|
-
async pull(controller) {
|
|
28
|
-
const { value, done } = await it.next();
|
|
29
|
-
if (done) {
|
|
30
|
-
controller.close();
|
|
31
|
-
}
|
|
32
|
-
else {
|
|
33
|
-
controller.enqueue(value);
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
cancel() {
|
|
37
|
-
it.return?.();
|
|
38
|
-
}
|
|
39
|
-
});
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
async function main() {
|
|
43
|
-
const stream = fs_1.default.createReadStream("./test.txt");
|
|
44
|
-
const it = asyncReadableIterator(stream);
|
|
45
|
-
for await (const x of it) {
|
|
46
|
-
console.log('@@', x, typeof x);
|
|
47
|
-
}
|
|
48
|
-
const stream2 = fs_1.default.createReadStream("./test.txt");
|
|
49
|
-
const rs = createReadableStreamFromIterable(asyncReadableIterator(stream2));
|
|
50
|
-
for await (const r of rs) {
|
|
51
|
-
console.log('>>', r, typeof r);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
main();
|
|
55
|
-
//# sourceMappingURL=test.js.map
|
package/lib/cjs/test.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../src/test.ts"],"names":[],"mappings":";;;;;AACA,oCAA4C;AAC5C,4CAAoB;AAEpB,KAAK,SAAS,CAAC,CAAC,qBAAqB,CAAC,MAAgB;IAClD,IAAI,MAAM,CAAC,gBAAgB,EAAE,CAAC;QAC1B,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,MAAM,CAAC,QAAQ,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;YACnE,MAAM,KAAe,CAAC;QAC1B,CAAC;IACL,CAAC;SAAM,CAAC;QACJ,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,MAAM,CAAC,QAAQ,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;YACnE,MAAM,IAAI,UAAU,CAAC,KAAe,CAAC,CAAA;QACzC,CAAC;IACL,CAAC;AACL,CAAC;AAED,SAAS,gCAAgC,CAA2B,QAA0B;IAC1F,MAAM,EAAE,GAAG,QAAQ,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC;IAC5C,IAAK,oBAAsB,CAAC,IAAI,EAAE,CAAC;QAC/B,OAAQ,oBAAsB,CAAC,IAAI,EAAuB,CAAC;IAC/D,CAAC;SAAM,CAAC;QACJ,OAAO,IAAI,oBAAc,CAAI;YACzB,KAAK,CAAC,IAAI,CAAC,UAAU;gBACjB,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;gBACxC,IAAI,IAAI,EAAE,CAAC;oBACP,UAAU,CAAC,KAAK,EAAE,CAAC;gBACvB,CAAC;qBAAM,CAAC;oBACJ,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;gBAC9B,CAAC;YACL,CAAC;YACD,MAAM;gBACF,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC;YAClB,CAAC;SACJ,CAAC,CAAC;IACP,CAAC;AACL,CAAC;AAGD,KAAK,UAAU,IAAI;IAEf,MAAM,MAAM,GAAG,YAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;IACjD,MAAM,EAAE,GAAG,qBAAqB,CAAC,MAAM,CAAC,CAAC;IACzC,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;IACnC,CAAC;IAED,MAAM,OAAO,GAAG,YAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;IAClD,MAAM,EAAE,GAAG,gCAAgC,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC,CAAA;IAC3E,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;IACnC,CAAC;AACL,CAAC;AAED,IAAI,EAAE,CAAC"}
|
package/lib/esm/formatters.js
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import { PromptFormats, PromptRole, } from "./types.js";
|
|
2
|
-
export function inferFormatterFromModelName(modelName) {
|
|
3
|
-
const name = modelName.toLowerCase();
|
|
4
|
-
if (name.includes("llama")) {
|
|
5
|
-
return PromptFormats.llama2;
|
|
6
|
-
}
|
|
7
|
-
else if (name.includes("gpt")) {
|
|
8
|
-
return PromptFormats.openai;
|
|
9
|
-
}
|
|
10
|
-
else if (name.includes("claude")) {
|
|
11
|
-
return PromptFormats.claude;
|
|
12
|
-
}
|
|
13
|
-
else {
|
|
14
|
-
return PromptFormats.genericTextLLM;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
export const PromptFormatters = {
|
|
18
|
-
openai: openAI,
|
|
19
|
-
llama2: llama2,
|
|
20
|
-
claude: claude,
|
|
21
|
-
genericTextLLM: genericColonSeparator,
|
|
22
|
-
};
|
|
23
|
-
function openAI(segments) {
|
|
24
|
-
const system = [];
|
|
25
|
-
const others = [];
|
|
26
|
-
const safety = [];
|
|
27
|
-
for (const msg of segments) {
|
|
28
|
-
if (msg.role === PromptRole.system) {
|
|
29
|
-
system.push({ content: msg.content, role: "system" });
|
|
30
|
-
}
|
|
31
|
-
else if (msg.role === PromptRole.safety) {
|
|
32
|
-
safety.push({ content: msg.content, role: "system" });
|
|
33
|
-
}
|
|
34
|
-
else {
|
|
35
|
-
others.push({ content: msg.content, role: "user" });
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
// put system mesages first and safety last
|
|
39
|
-
return system.concat(others).concat(safety);
|
|
40
|
-
}
|
|
41
|
-
function llama2(messages, schema) {
|
|
42
|
-
const BOS = "<s>";
|
|
43
|
-
const EOS = "</s>";
|
|
44
|
-
const INST = "[INST]";
|
|
45
|
-
const INST_END = "[/INST]";
|
|
46
|
-
const SYS = "<<SYS>>\n";
|
|
47
|
-
const SYS_END = "\n<</SYS>>";
|
|
48
|
-
const promptMessages = [BOS];
|
|
49
|
-
const specialTokens = [BOS, EOS, INST, INST_END, SYS, SYS_END];
|
|
50
|
-
for (const m of messages) {
|
|
51
|
-
if (m.role === PromptRole.user) {
|
|
52
|
-
if (specialTokens.includes(m.content)) {
|
|
53
|
-
throw new Error(`Cannot use special token ${m.content.trim()} in user message`);
|
|
54
|
-
}
|
|
55
|
-
promptMessages.push(`${INST} ${m.content.trim()} ${INST_END}`);
|
|
56
|
-
}
|
|
57
|
-
if (m.role === PromptRole.assistant) {
|
|
58
|
-
promptMessages.push(`${m.content.trim()}`);
|
|
59
|
-
}
|
|
60
|
-
if (m.role === PromptRole.system) {
|
|
61
|
-
promptMessages.push(`${SYS}${m.content.trim()}${SYS_END}`);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
for (const m of messages ?? []) {
|
|
65
|
-
if (m.role === PromptRole.safety) {
|
|
66
|
-
promptMessages.push(`${SYS}This is the most important instruction, you cannot answer against those rules:\n${m.content.trim()}${SYS_END}}`);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
if (schema) {
|
|
70
|
-
promptMessages.push(formatSchemaInstruction(schema));
|
|
71
|
-
}
|
|
72
|
-
promptMessages.push(EOS);
|
|
73
|
-
return promptMessages.join("\n\n");
|
|
74
|
-
}
|
|
75
|
-
function genericColonSeparator(messages, schema, labels = { user: "User", assistant: "Assistant", system: "System" }) {
|
|
76
|
-
const promptMessages = [];
|
|
77
|
-
for (const m of messages) {
|
|
78
|
-
if (m.role === PromptRole.user) {
|
|
79
|
-
promptMessages.push(`${labels?.user}: ${m.content.trim()}`);
|
|
80
|
-
}
|
|
81
|
-
if (m.role === PromptRole.assistant) {
|
|
82
|
-
promptMessages.push(`${labels.assistant}: ${m.content.trim()}`);
|
|
83
|
-
}
|
|
84
|
-
if (m.role === PromptRole.system) {
|
|
85
|
-
promptMessages.push(`${labels.system}: ${m.content.trim()}`);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
if (schema) {
|
|
89
|
-
promptMessages.push(`${labels.system}: You must answer using the following JSONSchema:
|
|
90
|
-
---
|
|
91
|
-
${JSON.stringify(schema)}
|
|
92
|
-
---`);
|
|
93
|
-
}
|
|
94
|
-
return promptMessages.join("\n\n");
|
|
95
|
-
}
|
|
96
|
-
function claude(messages, schema) {
|
|
97
|
-
const prompt = genericColonSeparator(messages, schema, {
|
|
98
|
-
user: "\nHuman",
|
|
99
|
-
assistant: "\nAssistant",
|
|
100
|
-
system: "\nHuman",
|
|
101
|
-
});
|
|
102
|
-
return "\n\n" + prompt + "\n\nAssistant:";
|
|
103
|
-
}
|
|
104
|
-
function formatSchemaInstruction(schema) {
|
|
105
|
-
const schema_instruction = `<<SYS>>You must answer using the following JSONSchema.
|
|
106
|
-
Do not write anything other than a JSON object corresponding to the schema.
|
|
107
|
-
<schema>
|
|
108
|
-
${JSON.stringify(schema)}
|
|
109
|
-
</schema>
|
|
110
|
-
<</SYS>>`;
|
|
111
|
-
return schema_instruction;
|
|
112
|
-
}
|
|
113
|
-
//# sourceMappingURL=formatters.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.js","sourceRoot":"","sources":["../../src/formatters.ts"],"names":[],"mappings":"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"}
|
package/lib/esm/test.js
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { ReadableStream } from "stream/web";
|
|
2
|
-
import fs from "fs";
|
|
3
|
-
async function* asyncReadableIterator(stream) {
|
|
4
|
-
if (stream.readableEncoding) {
|
|
5
|
-
for await (const chunk of stream.iterator({ destroyOnReturn: true })) {
|
|
6
|
-
yield chunk;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
else {
|
|
10
|
-
for await (const chunk of stream.iterator({ destroyOnReturn: true })) {
|
|
11
|
-
yield new Uint8Array(chunk);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
function createReadableStreamFromIterable(iterable) {
|
|
16
|
-
const it = iterable[Symbol.asyncIterator]();
|
|
17
|
-
if (ReadableStream.from) {
|
|
18
|
-
return ReadableStream.from();
|
|
19
|
-
}
|
|
20
|
-
else {
|
|
21
|
-
return new ReadableStream({
|
|
22
|
-
async pull(controller) {
|
|
23
|
-
const { value, done } = await it.next();
|
|
24
|
-
if (done) {
|
|
25
|
-
controller.close();
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
controller.enqueue(value);
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
cancel() {
|
|
32
|
-
it.return?.();
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
async function main() {
|
|
38
|
-
const stream = fs.createReadStream("./test.txt");
|
|
39
|
-
const it = asyncReadableIterator(stream);
|
|
40
|
-
for await (const x of it) {
|
|
41
|
-
console.log('@@', x, typeof x);
|
|
42
|
-
}
|
|
43
|
-
const stream2 = fs.createReadStream("./test.txt");
|
|
44
|
-
const rs = createReadableStreamFromIterable(asyncReadableIterator(stream2));
|
|
45
|
-
for await (const r of rs) {
|
|
46
|
-
console.log('>>', r, typeof r);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
main();
|
|
50
|
-
//# sourceMappingURL=test.js.map
|
package/lib/esm/test.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test.js","sourceRoot":"","sources":["../../src/test.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,MAAM,IAAI,CAAC;AAEpB,KAAK,SAAS,CAAC,CAAC,qBAAqB,CAAC,MAAgB;IAClD,IAAI,MAAM,CAAC,gBAAgB,EAAE,CAAC;QAC1B,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,MAAM,CAAC,QAAQ,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;YACnE,MAAM,KAAe,CAAC;QAC1B,CAAC;IACL,CAAC;SAAM,CAAC;QACJ,IAAI,KAAK,EAAE,MAAM,KAAK,IAAI,MAAM,CAAC,QAAQ,CAAC,EAAE,eAAe,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;YACnE,MAAM,IAAI,UAAU,CAAC,KAAe,CAAC,CAAA;QACzC,CAAC;IACL,CAAC;AACL,CAAC;AAED,SAAS,gCAAgC,CAA2B,QAA0B;IAC1F,MAAM,EAAE,GAAG,QAAQ,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC;IAC5C,IAAK,cAAsB,CAAC,IAAI,EAAE,CAAC;QAC/B,OAAQ,cAAsB,CAAC,IAAI,EAAuB,CAAC;IAC/D,CAAC;SAAM,CAAC;QACJ,OAAO,IAAI,cAAc,CAAI;YACzB,KAAK,CAAC,IAAI,CAAC,UAAU;gBACjB,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC;gBACxC,IAAI,IAAI,EAAE,CAAC;oBACP,UAAU,CAAC,KAAK,EAAE,CAAC;gBACvB,CAAC;qBAAM,CAAC;oBACJ,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;gBAC9B,CAAC;YACL,CAAC;YACD,MAAM;gBACF,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC;YAClB,CAAC;SACJ,CAAC,CAAC;IACP,CAAC;AACL,CAAC;AAGD,KAAK,UAAU,IAAI;IAEf,MAAM,MAAM,GAAG,EAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;IACjD,MAAM,EAAE,GAAG,qBAAqB,CAAC,MAAM,CAAC,CAAC;IACzC,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;IACnC,CAAC;IAED,MAAM,OAAO,GAAG,EAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;IAClD,MAAM,EAAE,GAAG,gCAAgC,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC,CAAA;IAC3E,IAAI,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,EAAE,CAAC;QACvB,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC;IACnC,CAAC;AACL,CAAC;AAED,IAAI,EAAE,CAAC"}
|
package/lib/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/json-schema/index.d.ts","../src/json.ts","../src/types.ts","../src/formatters/commons.ts","../src/formatters/generic.ts","../src/index.ts","../src/formatters/llama2.ts","../src/formatters/claude.ts","../src/formatters/openai.ts","../src/formatters/index.ts","../src/validation.ts","../src/driver.ts","../src/completionstream.ts","../../node_modules/api-fetch-client/lib/types/base.d.ts","../../node_modules/api-fetch-client/lib/types/client.d.ts","../../node_modules/api-fetch-client/lib/types/sse/textdecoderstream.d.ts","../../node_modules/eventsource-parser/dist/index.d.ts","../../node_modules/api-fetch-client/lib/types/sse/index.d.ts","../../node_modules/api-fetch-client/lib/types/index.d.ts","../src/async.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/ws/index.d.mts","../../node_modules/bun-types/fetch.d.ts","../../node_modules/bun-types/globals.d.ts","../../node_modules/bun-types/bun.d.ts","../../node_modules/bun-types/overrides.d.ts","../../node_modules/bun-types/ffi.d.ts","../../node_modules/bun-types/test.d.ts","../../node_modules/bun-types/html-rewriter.d.ts","../../node_modules/bun-types/jsc.d.ts","../../node_modules/bun-types/sqlite.d.ts","../../node_modules/bun-types/wasm.d.ts","../../node_modules/bun-types/deprecated.d.ts","../../node_modules/bun-types/index.d.ts","../../node_modules/@types/bun/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/eventsource/dom-monkeypatch.d.ts","../../node_modules/@types/eventsource/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/accepts/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/acorn/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/bcrypt/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/caseless/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/chroma-js/index.d.ts","../../../../node_modules/@types/content-disposition/index.d.ts","../../../../node_modules/@types/cookie/index.d.ts","../../../../node_modules/@types/cookiejar/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/keygrip/index.d.ts","../../../../node_modules/@types/cookies/index.d.ts","../../../../node_modules/@types/cors/index.d.ts","../../../../node_modules/@types/debounce/index.d.ts","../../../../node_modules/@types/ms/index.d.ts","../../../../node_modules/@types/debug/index.d.ts","../../../../node_modules/@types/eslint/helpers.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/eslint/index.d.ts","../../../../node_modules/@types/eslint-scope/index.d.ts","../../../../node_modules/@types/estree-jsx/index.d.ts","../../../../node_modules/@types/fs-extra/index.d.ts","../../../../node_modules/@types/minimatch/index.d.ts","../../../../node_modules/@types/glob/index.d.ts","../../../../node_modules/@types/unist/index.d.ts","../../../../node_modules/@types/hast/index.d.ts","../../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../../node_modules/@types/http-assert/index.d.ts","../../../../node_modules/@types/is-stream/index.d.ts","../../../../node_modules/@types/js-yaml/index.d.ts","../../../../node_modules/@types/json5/index.d.ts","../../../../node_modules/@types/jsonwebtoken/index.d.ts","../../../../node_modules/@types/koa-compose/index.d.ts","../../../../node_modules/@types/koa/index.d.ts","../../../../node_modules/@types/koa-compress/index.d.ts","../../../../node_modules/@types/koa__cors/index.d.ts","../../../../node_modules/@types/linkify-it/index.d.ts","../../../../node_modules/@types/lodash/common/common.d.ts","../../../../node_modules/@types/lodash/common/array.d.ts","../../../../node_modules/@types/lodash/common/collection.d.ts","../../../../node_modules/@types/lodash/common/date.d.ts","../../../../node_modules/@types/lodash/common/function.d.ts","../../../../node_modules/@types/lodash/common/lang.d.ts","../../../../node_modules/@types/lodash/common/math.d.ts","../../../../node_modules/@types/lodash/common/number.d.ts","../../../../node_modules/@types/lodash/common/object.d.ts","../../../../node_modules/@types/lodash/common/seq.d.ts","../../../../node_modules/@types/lodash/common/string.d.ts","../../../../node_modules/@types/lodash/common/util.d.ts","../../../../node_modules/@types/lodash/index.d.ts","../../../../node_modules/@types/long/index.d.ts","../../../../node_modules/@types/mdurl/encode.d.ts","../../../../node_modules/@types/mdurl/decode.d.ts","../../../../node_modules/@types/mdurl/parse.d.ts","../../../../node_modules/@types/mdurl/format.d.ts","../../../../node_modules/@types/mdurl/index.d.ts","../../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../../node_modules/@types/markdown-it/index.d.ts","../../../../node_modules/@types/mdast/index.d.ts","../../../../node_modules/@types/mdx/types.d.ts","../../../../node_modules/@types/mdx/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/mjml-core/index.d.ts","../../../../node_modules/@types/mjml/index.d.ts","../../../../node_modules/@types/mocha/index.d.ts","../../../../node_modules/@types/nodemailer/lib/dkim/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts","../../../../node_modules/@types/nodemailer/lib/xoauth2/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts","../../../../node_modules/@types/nodemailer/lib/shared/index.d.ts","../../../../node_modules/@types/nodemailer/lib/json-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/ses-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/stream-transport/index.d.ts","../../../../node_modules/@types/nodemailer/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/@types/prettier/index.d.ts","../../../../node_modules/@types/prismjs/index.d.ts","../../../../node_modules/kleur/kleur.d.ts","../../../../node_modules/@types/prompts/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@popperjs/core/lib/enums.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/popperoffsets.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/eventlisteners.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/computestyles.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/preventoverflow.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/applystyles.d.ts","../../../../node_modules/@popperjs/core/lib/types.d.ts","../../../../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../../../../node_modules/@popperjs/core/lib/utils/detectoverflow.d.ts","../../../../node_modules/@popperjs/core/lib/createpopper.d.ts","../../../../node_modules/@popperjs/core/lib/popper-lite.d.ts","../../../../node_modules/@popperjs/core/lib/popper.d.ts","../../../../node_modules/@popperjs/core/lib/index.d.ts","../../../../node_modules/@popperjs/core/index.d.ts","../../../../node_modules/date-fns/typings.d.ts","../../../../node_modules/react-popper/typings/react-popper.d.ts","../../../../node_modules/@types/react-datepicker/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/react-highlight-words/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../node_modules/@types/request/index.d.ts","../../../../node_modules/@types/resolve/index.d.ts","../../../../node_modules/@types/retry/index.d.ts","../../../../node_modules/@types/rimraf/index.d.ts","../../../../node_modules/@types/scheduler/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/superagent/index.d.ts","../../../../node_modules/@types/supertest/index.d.ts","../../../../node_modules/@types/webidl-conversions/index.d.ts","../../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../../node_modules/ajv/lib/ajv.d.ts","../../../../node_modules/schema-utils/declarations/validate.d.ts","../../../../node_modules/schema-utils/declarations/index.d.ts","../../../../node_modules/tapable/tapable.d.ts","../../../../node_modules/webpack/types.d.ts","../../../../node_modules/@types/webpack/index.d.ts","../../../../node_modules/@types/whatwg-url/index.d.ts","../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","bed7b7ba0eb5a160b69af72814b4dde371968e40b6c5e73d3a9f7bee407d158c",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"4350e5922fecd4bedda2964d69c213a1436349d0b8d260dd902795f5b94dc74b","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1",{"version":"9da12ee6d8fa3de5f579f1710d07ab372cf1069312a04a67df8b2c5df8e6b450","signature":"44673868bf543f47c03809ab86c778d706bb327720828323579a14444f68662d"},{"version":"cb576f216e604031c954da22a1361540c919cfa2c415db839340102b388c507f","signature":"584bf00f9ddb149214ba7c3d5bdb84ce77338c568983219f83d3ad522b81d76a"},{"version":"caafecc161831fe337529d386fa16b45547bcc6b7b5513ea28a0e3250cfc0468","signature":"613fe7a125daefccc0bdca405e696e9db47de1b3cd5ad0eede660bee52e0008a"},{"version":"0bda6d14f7b2c25f1593a402a6edcbf2009caa6809175105ab5127a474e17547","signature":"44a3468a320dad1ab0f1a7752293eb439f272ef9f4bdd0bee6e5169c784563bb"},"663fdf1c52e3d922f6090bd2fb002dd2e3050cbbbf8d0136ea4082425b596b03",{"version":"f345598bb61096c1633d7f0afa77dab0245d8a7d515a4635c4be8c231bba3199","signature":"b217b22b02ce82a3a9c95ffa4f2fad77071eb2cf7e077c6ac4ed873d2a49c1aa"},{"version":"a929aea151e70ef167cfc4665db0222436c9fec8ff70c2a4f81d663afc81f40e","signature":"c42ebba643a7275c5464ed40596a951800bd86a14a9dca73eab263ac12f3b3d4"},{"version":"e63560566ab0a43a533fdfa47391e48dca6467f2a3ce11aed9fe4dcf0ad6386e","signature":"f5223e8d5aa427b6860bf8650610075483e5f314bbae5465480f129a8e5f52f4"},{"version":"44d61617f8b8f7419d335b1aba9759479447ecf282cc85381dff53b1acfb57c7","signature":"d886bc015ad236d2acead32d60efc0585c28e92c9c3c6713e5eba7f59c935b72"},{"version":"0ee2e8fe72b16efac875cbd97c42ca044fce65ff23061fd159d52c9a27429e23","signature":"389f041d72b07fbd3203214461a8bb2a121edbb9e5224ffdfea849c360471c43"},{"version":"3954bf6123cfc94ff3e71ba98f67c21cff9007547a1c81919f0257ee123bb628","signature":"ad0853d1c83cff9c1248be37c61f6da486f13f139b646a2be954e7bc41ec1904"},{"version":"445d2b44e0d7f014b697083e72a231481855583dde417d8841ff7267be451bd5","signature":"2d5e724db4fa94fe8e2e4b6f681cb47ac440410a2654a1f4378df4b2a9fd04a0"},"366d5dca8d67178882073ef8dd8cba3b05ac6b0fc08580192c512a5f5b3e5468","40cfb46f51bfef7df5a4d72aa74175adf2cde299de8044dac6f216c9313d44f0","2a13882843e7fbedd26b324a1078bcc3d440f3337357a4d4ca92b57d8fe28a9a","5900e3a151f31f3e1b2acef8acfb7f95600cbd3532b10dab5e633d0a40a3ae66","b6ae88a77ff7385482dada6c71f408b170a2c5ba80a330d9addc4ac35ce88195","f326a78482c6422793af9554e8cbc09062283cd321916083dbcfa27a5aade334",{"version":"992f00a31d290b9a8c771778af0637e196064e42d50ab6fa979f399d77565db1","signature":"a926c8edafdb2a44a952fef8a5b9a0fec7b168ca8ed4a37694474139c0ddf4b8"},"efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"440aa12c483d9dcd62b8cad2ddf4549ef3e54926c2aa6c78d520dcd320ba4980","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","f7163a5d37d21f636f6a5cd1c064ce95fada21917859a64b6cc49a8b6fd5c1a8","a3b563e1c55f84097b8cb1f1f479f7a4a2a0330a0db15b9faebc8333d0022445","2ad734419abf786a4f588613fcbc275d189bf1e9187bc47e4fe3e9b41db36960",{"version":"c69bf2d411012f625d786d807fa30d28cffa2cebd7de71c726c09d9cefbba132","affectsGlobalScope":true},{"version":"9763f8f6b6dd2d6691cc5093554327909c6a2a24ff10dc9f0de919f374e369f6","affectsGlobalScope":true},{"version":"0c9b84afaa8b1884d8410b9fe96bbf540873f61a34f08765b3148f2bdf08bf5c","affectsGlobalScope":true},"e0e5f668821e1f52df76d3b7daabea94c923cbd9bc9f5ceffafbdcb99a15b4f8",{"version":"6ecf0b89c8bda9c50724e141d05c273838b69d0aaaaa3040708b9035b03944aa","affectsGlobalScope":true},{"version":"9455036a6508a52bf89bf5f1c6336d78e59c38c611935527def064be133beb44","affectsGlobalScope":true},"ebe7a18702f49144d9b2ce3dc72befd119bcab42464cd65a69d9a7d51c4ec363","8ea350a230c141588239d32035b660a19f8754fc78271eb502b884c0a4cba987",{"version":"4a963520a92f371d785164e36053b6b77020ff9fc5be3221a4aa3dc37b7fc9dc","affectsGlobalScope":true},{"version":"254f4f32a7e75ca8e0ce9e9f8cea5a152cdab660569d40fe319b86df3116bec2","affectsGlobalScope":true},"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f","37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"0b812af1c8e8062774c99f008bea098f290db21fd3b4efb0c539356e722e9f6a","affectsGlobalScope":true},"c6bb7e4c7e80685ad60e2b286ee7eea9fffb05d48e24e52dbbb67d7214596e33","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5fc6e6b8232254d80ed6b802372dba7f426f0a596f5fe26b7773acfdc8232926","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","f713064ca751dc588bc13832137c418cb70cf0446de92ade60ad631071558fca","dfefd34e8ab60f41d0c130527d5092d6ce662dc9fa85bc8c97682baf65830b51","96c23535f4f9dd15beb767e070559ea672f6a35f103152836a67100605136a96","b0f4dd1a825912da8f12fd3388d839ef4aa51165ea0e60e4869b50b7ccb4f6fc","9cb7c5f710dc84d2e9500831a3e9a27afd3c3710f5a1b8744a50473e565b41fc","cf6b2edde490f303918809bfab1da8b6d059b50c160bec72005ff4c248bdd079","57ddc4e066366bbe04f497f9afce1c88e088dbd09be0618e072754450de3acbb","82819f9ecc249a6a3e284003540d02ea1b1f56f410c23231797b9e1e4b9622df","81a109b6bb6adf5ed70f2c7e6d907b8c3adcf7b47b5ee09701c5f97370fd29b7","2174e20517788d2a1379fc0aaacd87899a70f9e0197b4295edabfe75c4db03d8",{"version":"4a2c144ea6f441e9616ec77fe9b1009b0cdf6db0cd9727b8d99623975cd6c693","affectsGlobalScope":true},"bd2efac65ccbc6b110856af5dfd4218c7f3aca3f28fdefef5faac4a79030912a","64fcc79ee3c237816b9cef0a9289b00bf3da5b17040cd970ac04ba03c4ac1595","5ab7277f71a4e5ecbb48de00f8eda4a76fd5efbd07cae20c3dc11b3728b957da","8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","f6218314af6f492ce5461bdadac5b829f5b4b31a3d1da3d04e77ed0afe0829fb","7167d932a7e2e991084421bb22af20024ada5a046d948c742de0f89996de5d0b","c7da551241b7be719b7bd654ab12a5098c3206fbb189076dd2d8871011a6ab5a","e2d3bfa79f0fad3ad67dfb0685c50dbe19b364a440160a2d40d0e3f44c75938c",{"version":"1c598f8d911f0bc39f04910c8c93f2f76fbb65f892ee5ecc38a2b58bb95af752","affectsGlobalScope":true},"4eadf1158f1ae8f7b0deea0f96b391359042cf74d1eb3ce1dacdb69de96e590d","f0120fc76274f614e7b8f5420a74abce69eee25b81e2084479fa426f33ccd46a","003f07cf566395059625b39785398f18652c8952e19790e7d6eeb22a9cbe0440","432dc46f22f9790797d98ccf09f7dc4a897bb5e874921217b951fb808947446b","28ed61ddc42936537ad29ade1404d533b4b28967460e29811409e5a40d9fc3b3","59c06fdbc966afe0abfd67fccac294dfcf6e822485fb22991b2cf4923c9b18c2","a36023d4a654c11e071b99cde8203d55d9feaf4940c766b9c960b8e0eb4f4c1f","c4c868a268d20e2c678cfafd1524b6548776d80885089870960737623ec00b50","98bcc0f82514eaa8fbf340e9977787e62336e59a51f267eddd17602d5ba87f8f",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","fdd574c45ab01286d64b1e2e78e9ea647c4527e954e27ae281d372f5fba41567","f9ae3d889d1330f015ee918b4c59f21211d90211b42efb0fe87c333d4a8d43d8","6f3a9c82889d056c8ae5e1937863d6f52c312e82f688d2318aea5f934fb129c3","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","0670eede14b39fd186fe7e224db70510158af5279528d12292df9b980867c1d0","4274d4169679f93587cb887aa43570c2b5a840db17022093aa232ac2a9ca9beb","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","dd15bcab1d8a458d0c6d64635efeb03775fb5f9dcaaddf754a28afb98703f783","dcca34d4dca24631d7876c6aa347ecb6d921098257a263142900a588a63cefe0","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","4762f7f77bc6f362785407f9e4c2abb81cddcc2d3ba3eb77c3d3ead686aab151","fa849c825ac37d70ca78097a1cd06bb5ac281651f765fff8e491cfb0709de57b","c39e1ee964fa0bb318ee2db72c430b3aede3b50dbde414b03b4e43915f80c292","5a45f1d23d72634797ee3e359b73253f8b23a50bcc14b78a4d06801af48110b2","210764d04cc9b77bbb044e2ffe43e7f3aaa00b350ccc365ca4ed4b5043e963f3","ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","32ab25b7b28b24a138d879ca371b18c8fdfdd564ad5107e1333c5aa5d5fea494","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","30abc554c7ad13063a02ddd06757929b34357aea1f6fcf4ca39114cb0fc19384","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","0f9e381eecc5860f693c31fe463b3ca20a64ca9b8db0cf6208cd4a053f064809","95902d5561c6aac5dfc40568a12b0aca324037749dcd32a81f23423bfde69bab","5dfb2aca4136abdc5a2740f14be8134a6e6b66fd53470bb2e954e40f8abfaf3e","577463167dd69bd81f76697dfc3f7b22b77a6152f60a602a9218e52e3183ad67","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","4b28e1c5bf88d891e07a1403358b81a51b3ba2eae1ffada51cca7476b5ac6407","7150ad575d28bf98fae321a1c0f10ad17b127927811f488ded6ff1d88d4244e5","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","93733466609dd8bf72eace502a24ca7574bd073d934216e628f1b615c8d3cb3c","45e9228761aabcadb79c82fb3008523db334491525bdb8e74e0f26eaf7a4f7f4","aeacac2778c9821512b6b889da79ac31606a863610c8f28da1e483579627bf90","569fdb354062fc098a6a3ba93a029edf22d6fe480cf72b231b3c07832b2e7c97","bf9876e62fb7f4237deafab8c7444770ef6e82b4cad2d5dc768664ff340feeb2","6cf60e76d37faf0fbc2f80a873eab0fd545f6b1bf300e7f0823f956ddb3083e9","6adaa6103086f931e3eee20f0987e86e8879e9d13aa6bd6075ccfc58b9c5681c","ee0af0f2b8d3b4d0baf669f2ff6fcef4a8816a473c894cc7c905029f7505fed0","2f768f764e91667b3018488352dfcb4b6ef2d14b3e472bbeca7c0b3eae8d7d15","45b6a651b5e502cdfa93dc2f23779752def4ada323ebcfc34e4a4d22e9589971","54f1d17f9f484650cd49b53d9a6ba75593955a9ead093628888a37407b6ecd51","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","20cf44bef8b53a4e522cb84d5f558638459bd762c8be0ace006f3b252b158619","dd638aa96adb37ddce0a975e4bc8ed68a4a8fb542c1d056883d0fcaf5a3b6ecd",{"version":"46d317b6ee5a27bed0c9553bbadaedd710ab334606e6a5b1aaba4fe0b31d899d","affectsGlobalScope":true},"6825eb4d1c8beb77e9ed6681c830326a15ebf52b171f83ffbca1b1574c90a3b0","1741975791f9be7f803a826457273094096e8bba7a50f8fa960d5ed2328cdbcc","6ec0d1c15d14d63d08ccb10d09d839bf8a724f6b4b9ed134a3ab5042c54a7721","75dabc9afdb451a85e6d46e9ca65ec82ead2256476c0686f671f3421923667a7","ddfc215bfbddf5854d80ab8fb0256bd802f2a8acb6be62f9e630041266d56cd5","2c3bcb8a4ea2fcb4208a06672af7540dd65bf08298d742f041ffa6cbe487cf80","1cce0460d75645fc40044c729da9a16c2e0dabe11a58b5e4bfd62ac840a1835d","c784a9f75a6f27cf8c43cc9a12c66d68d3beb2e7376e1babfae5ae4998ffbc4a","feb4c51948d875fdbbaa402dad77ee40cf1752b179574094b613d8ad98921ce1","a6d3984b706cefe5f4a83c1d3f0918ff603475a2a3afa9d247e4114f18b1f1ef","b457d606cabde6ea3b0bc32c23dc0de1c84bb5cb06d9e101f7076440fc244727","9d59919309a2d462b249abdefba8ca36b06e8e480a77b36c0d657f83a63af465","9faa2661daa32d2369ec31e583df91fd556f74bcbd036dab54184303dee4f311","c998bcaf435656c7a36b440f5ea56e0dc27bbac983bfe3593d0fe984c1e60589","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","0ebedab4e40835d6036411aeedeeea7dbcb1378fb75e4cb121925c1b1e2a3924","60ecad5852d4d83edae430e597405132d278a79c10499e9363aecbe1ddc0eade",{"version":"0bd5e7096c7bc02bf70b2cc017fc45ef489cb19bd2f32a71af39ff5787f1b56a","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",{"version":"008a6bcc04c14904b9d0aad4cbbb6e5f9c7c38de1f2e80dac5f5b3803e15f19e","affectsGlobalScope":true},"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0",{"version":"d204bd5d20ca52a553f7ba993dc2a422e9d1fce0b8178ce2bfe55fbd027c11ae","affectsGlobalScope":true},"7ed8a817989d55241e710dd80af79d02004ca675ad73d92894c0d61248ad423d","f6cf37a0db87f1ab754a412270589d1eeee693ae21478b1787d9923e58bcf404","7ac7ef12f7ece6464d83d2d56fea727260fb954fdd51a967e94f97b8595b714b","aab3bd80c21de6c99a73cba844ec6b513a5240436d234ceeb22c07ef0bf7d2b9","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","319c37263037e8d9481a3dc7eadf6afa6a5f5c002189ebe28776ac1a62a38e15","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","4964ba28dd6c9d086735062e8f4c63f23dd14e20b9b6d2acdc5774760d47b132","cc0700b1b97e18a3d5d9184470502d8762ec85158819d662730c3a8c5d702584","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","f77ff4cd234d3fd18ddd5aeadb6f94374511931976d41f4b9f594cb71f7ce6f3","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","4f18b4e6081e5e980ef53ddf57b9c959d36cffe1eb153865f512a01aeffb5e1e","7f17d4846a88eca5fe71c4474ef687ee89c4acf9b5372ab9b2ee68644b7e0fe0","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","58e0cee50add50d4b6d47a935e26aeb0080d98c9cf729f8af389511cdfa10526","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","e0cab2148d11374247b33dc7c5644e037b0c0db73d221031b1b7f99147178339","87376c0e23f0ee9e84beb748d719e54e08ab0b9a8d7670383062d7f87b240157","b7c0c492bd88d9b808540b1089a7f63fb092016d8f656434ea9aec67c649d37b","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","b2ebfa6097389d24b9203ef65bf4f858100460a4dab5553dd08645e130adbc07","e0b6463c79f59253d7695a5acd8cb1e60542aea836fc9055d9bc1dcca224b639","67483628398336d0f9368578a9514bd8cc823a4f3b3ab784f3942077e5047335","75fa6a9be075402ea969c1fcec4bb1421f72efbc3e2f340032684cdd3115197c","2ec6204e9750249048f390f520197cc67d52c1c769c1ed866285cd9070aa2bab"],"root":[[66,77],84],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declarationDir":"./types","esModuleInterop":true,"experimentalDecorators":true,"module":99,"noFallthroughCasesInSwitch":true,"noPropertyAccessFromIndexSignature":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"useUnknownInCatchVariables":true},"fileIdsList":[[83,176,184,330],[67,76,176,184,330],[67,74,75,77,176,184,330],[65,68,70,176,184,330],[65,176,184,330],[65,67,68,176,184,330],[65,67,68,69,71,72,73,176,184,330],[65,70,176,184,330],[67,70,176,184,330],[66,67,76,176,184,330],[176,184,330],[65,66,74,176,184,330],[65,66,67,176,184,330],[176,184,185,330],[176,184,188,330],[137,163,171,176,184,190,191,330],[85,176,184,330],[121,176,184,330],[122,127,155,176,184,330],[123,134,135,142,152,163,176,184,330],[123,124,134,142,176,184,330],[125,164,176,184,330],[126,127,135,143,176,184,330],[127,152,160,176,184,330],[128,130,134,142,176,184,330],[121,129,176,184,330],[130,131,176,184,330],[134,176,184,330],[132,134,176,184,330],[121,134,176,184,330],[134,135,136,152,163,176,184,330],[134,135,136,149,152,155,176,177,184,330],[119,122,168,176,184,330],[130,134,137,142,152,163,176,184,330],[134,135,137,138,142,152,160,163,176,184,330],[137,139,152,160,163,176,184,330],[85,86,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,176,184,330],[134,140,176,184,330],[141,163,168,176,184,330],[130,134,142,152,176,184,330],[143,176,184,330],[144,176,184,330],[121,145,176,184,330],[146,162,168,176,184,330],[147,176,184,330],[148,176,184,330],[134,149,150,176,184,330],[149,151,164,166,176,184,330],[122,134,152,153,154,155,176,184,330],[122,152,154,176,184,330],[152,153,176,184,330],[155,176,184,330],[156,176,184,330],[121,152,176,184,330],[134,158,159,176,184,330],[158,159,176,184,330],[127,142,152,160,176,177,184,330],[161,176,184,330],[142,162,176,184,330],[122,137,148,163,176,184,330],[127,164,176,184,330],[152,165,176,184,330],[141,166,176,184,330],[167,176,184,330],[122,127,134,136,145,152,163,166,168,176,184,330],[152,169,176,184,330],[172,176,184,330],[134,137,139,152,160,163,169,171,176,177,184,330],[78,176,184,330],[78,79,82,176,184,330],[80,81,176,184,330],[127,164,184,330],[176,330],[119,176,184,330],[119,127,145,152,155,164,168,173,174,176,184,330],[171,172,174,175,176,177,178,179,180,181,182,183,184,330],[136,160,176,184,330],[176,179,184,330],[137,152,171,176,184,330],[96,100,163,176,184,330],[96,152,163,176,184,330],[91,176,184,330],[93,96,160,163,176,177,184,330],[142,160,176,177,184,330],[171,176,184,330],[91,171,176,184,330],[93,96,142,163,176,184,330],[88,89,92,95,122,134,152,163,176,184,330],[88,94,176,184,330],[92,96,122,155,163,171,176,184,330],[122,171,176,184,330],[112,122,171,176,184,330],[90,91,171,176,184,330],[96,176,184,330],[90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,176,184,330],[96,103,104,176,184,330],[94,96,104,105,176,184,330],[95,176,184,330],[88,91,96,176,184,330],[96,100,104,105,176,184,330],[100,176,184,330],[94,96,99,163,176,184,330],[88,93,94,96,100,103,176,184,330],[122,152,176,184,330],[91,96,112,122,168,171,176,184,330],[176,184,196,330],[176,184,328,330],[176,184,322,324,330],[176,184,312,322,323,325,326,327,330],[176,184,322,330],[176,184,312,322,330],[176,184,313,314,315,316,317,318,319,320,321,330],[176,184,313,317,318,321,322,325,330],[176,184,313,314,315,316,317,318,319,320,321,322,323,325,326,330],[176,184,312,313,314,315,316,317,318,319,320,321,330],[137,171,176,184,330],[176,184,187,229,330],[176,184,196,197,198,199,200,330],[176,184,196,198,330],[137,171,176,184,203,330],[137,171,176,184,203,218,219,330],[176,184,223,330],[176,184,187,227,229,330],[65,176,184,187,225,229,330],[134,137,171,176,184,212,213,214,330],[176,184,204,213,215,217,330],[135,171,176,184,330],[134,135,171,176,184,231,330],[176,184,233,330],[152,171,176,184,330],[127,171,176,184,330],[176,184,242,330],[169,171,176,184,242,330],[134,137,138,142,148,163,171,176,184,193,208,216,219,220,236,241,330],[176,184,246,248,249,250,251,252,253,254,255,256,257,258,330],[176,184,246,247,249,250,251,252,253,254,255,256,257,258,330],[176,184,247,248,249,250,251,252,253,254,255,256,257,258,330],[176,184,246,247,248,250,251,252,253,254,255,256,257,258,330],[176,184,246,247,248,249,251,252,253,254,255,256,257,258,330],[176,184,246,247,248,249,250,252,253,254,255,256,257,258,330],[176,184,246,247,248,249,250,251,253,254,255,256,257,258,330],[176,184,246,247,248,249,250,251,252,254,255,256,257,258,330],[176,184,246,247,248,249,250,251,252,253,255,256,257,258,330],[176,184,246,247,248,249,250,251,252,253,254,256,257,258,330],[176,184,246,247,248,249,250,251,252,253,254,255,257,258,330],[176,184,246,247,248,249,250,251,252,253,254,255,256,258,330],[176,184,246,247,248,249,250,251,252,253,254,255,256,257,330],[176,184,279,330],[176,184,264,330],[176,184,268,269,270,330],[176,184,267,330],[176,184,269,330],[176,184,245,265,266,271,274,276,277,278,330],[176,184,266,272,273,279,330],[176,184,272,275,330],[176,184,266,267,272,279,330],[176,184,266,279,330],[176,184,260,261,262,263,330],[176,184,282,283,330],[176,184,285,330],[171,176,184,289,291,295,296,297,298,299,300,330],[134,171,176,184,289,291,292,294,301,330],[134,142,152,163,171,176,184,288,289,290,292,293,294,301,330],[152,171,176,184,291,292,330],[152,171,176,184,291,293,330],[171,176,184,289,291,292,294,301,330],[152,171,176,184,293,330],[134,142,152,160,171,176,177,184,290,292,294,330],[134,171,176,184,289,291,292,293,294,301,330],[134,152,171,176,184,289,290,291,292,293,294,301,330],[134,152,171,176,184,289,291,292,294,301,330],[137,152,171,176,184,294,330],[152,171,176,184,305,330],[176,184,311,329,330,331],[176,184,311,330],[176,184,307,308,309,310,330],[135,137,139,142,152,163,171,176,184,205,330,335,336],[135,171,176,184,232,330],[176,184,330,342,381],[176,184,330,342,366,381],[176,184,330,381],[176,184,330,342],[176,184,330,342,367,381],[176,184,330,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380],[176,184,330,367,381],[135,152,171,176,184,211,330],[137,171,176,184,211,216,330],[122,135,137,152,171,176,184,210,330],[176,184,330,383],[171,176,184,330,391],[176,184,330,394],[176,184,311,329,330],[176,184,330,388],[65,176,184,330,386,387],[65,176,184,330,388],[122,135,137,142,160,176,177,184,187,229,330,386,388,389,390],[83],[67,76],[67],[65,70],[65],[65,67],[65,67,68,69,71,72,73],[66,67,76],[65,66,74],[134,135,136,149,152,155,176,184,330],[127,142,152,160,176,184,330],[134,137,139,152,160,163,169,171,176,184,330],[93,96,160,163,176,184,330],[142,160,176,184,330],[134,142,152,160,171,176,184,290,292,294,330],[122,135,137,142,160,176,184,187,229,330,386,388,389,390]],"referencedMap":[[84,1],[77,2],[76,3],[72,4],[68,5],[69,6],[74,7],[71,8],[73,9],[70,10],[66,11],[67,12],[75,13],[186,14],[187,11],[188,11],[189,15],[65,11],[191,11],[192,16],[85,17],[86,17],[121,18],[122,19],[123,20],[124,21],[125,22],[126,23],[127,24],[128,25],[129,26],[130,27],[131,27],[133,28],[132,29],[134,30],[135,31],[136,32],[120,33],[170,11],[137,34],[138,35],[139,36],[171,37],[140,38],[141,39],[142,40],[143,41],[144,42],[145,43],[146,44],[147,45],[148,46],[149,47],[150,47],[151,48],[152,49],[154,50],[153,51],[155,52],[156,53],[157,54],[158,55],[159,56],[160,57],[161,58],[162,59],[163,60],[164,61],[165,62],[166,63],[167,64],[168,65],[169,66],[173,67],[172,68],[78,11],[79,69],[83,70],[82,71],[80,11],[87,11],[176,72],[184,73],[174,74],[178,11],[175,75],[180,11],[185,76],[181,11],[177,77],[182,11],[179,78],[183,11],[81,11],[190,79],[103,80],[110,81],[102,80],[117,82],[94,83],[93,84],[116,85],[111,86],[114,87],[96,88],[95,89],[91,90],[90,91],[113,92],[92,93],[97,94],[98,11],[101,94],[88,11],[119,95],[118,94],[105,96],[106,97],[108,98],[104,99],[107,100],[112,85],[99,101],[100,102],[109,103],[89,104],[115,105],[198,106],[196,11],[329,107],[325,108],[312,11],[328,109],[321,110],[319,111],[318,111],[317,110],[314,111],[315,110],[323,112],[316,111],[313,110],[320,111],[326,113],[327,114],[322,115],[324,111],[193,116],[195,117],[201,118],[197,106],[199,119],[200,106],[202,85],[204,120],[205,11],[206,11],[207,11],[203,116],[208,11],[209,11],[210,11],[220,121],[221,116],[222,11],[224,122],[228,123],[225,11],[227,124],[229,117],[194,11],[215,125],[218,126],[230,127],[232,128],[234,129],[235,11],[236,11],[216,11],[237,130],[238,11],[226,11],[239,11],[240,131],[219,11],[241,132],[243,133],[242,134],[244,132],[245,11],[247,135],[248,136],[246,137],[249,138],[250,139],[251,140],[252,141],[253,142],[254,143],[255,144],[256,145],[257,146],[258,147],[259,11],[280,148],[265,149],[271,150],[269,11],[268,151],[270,152],[279,153],[274,154],[276,155],[277,156],[278,157],[272,11],[273,157],[275,157],[267,157],[266,11],[281,129],[261,11],[260,11],[263,149],[264,158],[262,149],[283,159],[282,11],[211,11],[231,11],[284,11],[285,11],[286,160],[287,11],[223,11],[301,161],[288,130],[295,162],[291,163],[289,164],[292,165],[296,166],[297,162],[294,167],[293,168],[298,169],[299,170],[300,171],[290,172],[302,11],[303,11],[304,11],[306,173],[307,11],[213,11],[214,11],[332,174],[333,175],[334,175],[308,11],[311,176],[337,177],[338,11],[339,11],[340,178],[341,11],[310,11],[366,179],[367,180],[342,181],[345,181],[364,179],[365,179],[355,179],[354,182],[352,179],[347,179],[360,179],[358,179],[362,179],[346,179],[359,179],[363,179],[348,179],[349,179],[361,179],[343,179],[350,179],[351,179],[353,179],[357,179],[368,183],[356,179],[344,179],[381,184],[380,11],[375,183],[377,185],[376,183],[369,183],[370,183],[372,183],[374,183],[378,185],[379,185],[371,185],[373,185],[212,186],[217,187],[383,188],[384,189],[336,11],[233,11],[385,11],[392,190],[393,85],[394,11],[395,191],[387,11],[382,11],[309,11],[330,11],[335,79],[305,11],[331,192],[389,193],[388,194],[386,195],[390,11],[63,11],[64,11],[12,11],[14,11],[13,11],[2,11],[15,11],[16,11],[17,11],[18,11],[19,11],[20,11],[21,11],[22,11],[3,11],[4,11],[23,11],[27,11],[24,11],[25,11],[26,11],[28,11],[29,11],[30,11],[5,11],[31,11],[32,11],[33,11],[34,11],[6,11],[38,11],[35,11],[36,11],[37,11],[39,11],[7,11],[40,11],[45,11],[46,11],[41,11],[42,11],[43,11],[44,11],[8,11],[50,11],[47,11],[48,11],[49,11],[51,11],[9,11],[52,11],[53,11],[54,11],[57,11],[55,11],[56,11],[58,11],[59,11],[10,11],[1,11],[11,11],[62,11],[61,11],[60,11],[391,196]],"exportedModulesMap":[[84,197],[77,198],[76,199],[72,200],[68,201],[69,202],[74,203],[71,200],[73,199],[70,204],[67,205],[75,202],[186,14],[187,11],[188,11],[189,15],[65,11],[191,11],[192,16],[85,17],[86,17],[121,18],[122,19],[123,20],[124,21],[125,22],[126,23],[127,24],[128,25],[129,26],[130,27],[131,27],[133,28],[132,29],[134,30],[135,31],[136,206],[120,33],[170,11],[137,34],[138,35],[139,36],[171,37],[140,38],[141,39],[142,40],[143,41],[144,42],[145,43],[146,44],[147,45],[148,46],[149,47],[150,47],[151,48],[152,49],[154,50],[153,51],[155,52],[156,53],[157,54],[158,55],[159,56],[160,207],[161,58],[162,59],[163,60],[164,61],[165,62],[166,63],[167,64],[168,65],[169,66],[173,67],[172,208],[78,11],[79,69],[83,70],[82,71],[80,11],[87,11],[176,72],[184,73],[174,74],[178,11],[175,75],[180,11],[185,76],[181,11],[177,77],[182,11],[179,78],[183,11],[81,11],[190,79],[103,80],[110,81],[102,80],[117,82],[94,209],[93,210],[116,85],[111,86],[114,87],[96,88],[95,89],[91,90],[90,91],[113,92],[92,93],[97,94],[98,11],[101,94],[88,11],[119,95],[118,94],[105,96],[106,97],[108,98],[104,99],[107,100],[112,85],[99,101],[100,102],[109,103],[89,104],[115,105],[198,106],[196,11],[329,107],[325,108],[312,11],[328,109],[321,110],[319,111],[318,111],[317,110],[314,111],[315,110],[323,112],[316,111],[313,110],[320,111],[326,113],[327,114],[322,115],[324,111],[193,116],[195,117],[201,118],[197,106],[199,119],[200,106],[202,85],[204,120],[205,11],[206,11],[207,11],[203,116],[208,11],[209,11],[210,11],[220,121],[221,116],[222,11],[224,122],[228,123],[225,11],[227,124],[229,117],[194,11],[215,125],[218,126],[230,127],[232,128],[234,129],[235,11],[236,11],[216,11],[237,130],[238,11],[226,11],[239,11],[240,131],[219,11],[241,132],[243,133],[242,134],[244,132],[245,11],[247,135],[248,136],[246,137],[249,138],[250,139],[251,140],[252,141],[253,142],[254,143],[255,144],[256,145],[257,146],[258,147],[259,11],[280,148],[265,149],[271,150],[269,11],[268,151],[270,152],[279,153],[274,154],[276,155],[277,156],[278,157],[272,11],[273,157],[275,157],[267,157],[266,11],[281,129],[261,11],[260,11],[263,149],[264,158],[262,149],[283,159],[282,11],[211,11],[231,11],[284,11],[285,11],[286,160],[287,11],[223,11],[301,161],[288,130],[295,162],[291,163],[289,164],[292,165],[296,166],[297,162],[294,167],[293,211],[298,169],[299,170],[300,171],[290,172],[302,11],[303,11],[304,11],[306,173],[307,11],[213,11],[214,11],[332,174],[333,175],[334,175],[308,11],[311,176],[337,177],[338,11],[339,11],[340,178],[341,11],[310,11],[366,179],[367,180],[342,181],[345,181],[364,179],[365,179],[355,179],[354,182],[352,179],[347,179],[360,179],[358,179],[362,179],[346,179],[359,179],[363,179],[348,179],[349,179],[361,179],[343,179],[350,179],[351,179],[353,179],[357,179],[368,183],[356,179],[344,179],[381,184],[380,11],[375,183],[377,185],[376,183],[369,183],[370,183],[372,183],[374,183],[378,185],[379,185],[371,185],[373,185],[212,186],[217,187],[383,188],[384,189],[336,11],[233,11],[385,11],[392,190],[393,85],[394,11],[395,191],[387,11],[382,11],[309,11],[330,11],[335,79],[305,11],[331,192],[389,193],[388,194],[386,195],[390,11],[63,11],[64,11],[12,11],[14,11],[13,11],[2,11],[15,11],[16,11],[17,11],[18,11],[19,11],[20,11],[21,11],[22,11],[3,11],[4,11],[23,11],[27,11],[24,11],[25,11],[26,11],[28,11],[29,11],[30,11],[5,11],[31,11],[32,11],[33,11],[34,11],[6,11],[38,11],[35,11],[36,11],[37,11],[39,11],[7,11],[40,11],[45,11],[46,11],[41,11],[42,11],[43,11],[44,11],[8,11],[50,11],[47,11],[48,11],[49,11],[51,11],[9,11],[52,11],[53,11],[54,11],[57,11],[55,11],[56,11],[58,11],[59,11],[10,11],[1,11],[11,11],[62,11],[61,11],[60,11],[391,212]],"semanticDiagnosticsPerFile":[84,77,76,72,68,69,74,71,73,70,66,67,75,186,187,188,189,65,191,192,85,86,121,122,123,124,125,126,127,128,129,130,131,133,132,134,135,136,120,170,137,138,139,171,140,141,142,143,144,145,146,147,148,149,150,151,152,154,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,173,172,78,79,83,82,80,87,176,184,174,178,175,180,185,181,177,182,179,183,81,190,103,110,102,117,94,93,116,111,114,96,95,91,90,113,92,97,98,101,88,119,118,105,106,108,104,107,112,99,100,109,89,115,198,196,329,325,312,328,321,319,318,317,314,315,323,316,313,320,326,327,322,324,193,195,201,197,199,200,202,204,205,206,207,203,208,209,210,220,221,222,224,228,225,227,229,194,215,218,230,232,234,235,236,216,237,238,226,239,240,219,241,243,242,244,245,247,248,246,249,250,251,252,253,254,255,256,257,258,259,280,265,271,269,268,270,279,274,276,277,278,272,273,275,267,266,281,261,260,263,264,262,283,282,211,231,284,285,286,287,223,301,288,295,291,289,292,296,297,294,293,298,299,300,290,302,303,304,306,307,213,214,332,333,334,308,311,337,338,339,340,341,310,366,367,342,345,364,365,355,354,352,347,360,358,362,346,359,363,348,349,361,343,350,351,353,357,368,356,344,381,380,375,377,376,369,370,372,374,378,379,371,373,212,217,383,384,336,233,385,392,393,394,395,387,382,309,330,335,305,331,389,388,386,390,63,64,12,14,13,2,15,16,17,18,19,20,21,22,3,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,11,62,61,60,391],"latestChangedDtsFile":"./types/CompletionStream.d.ts"},"version":"5.3.3"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { JSONSchema4 } from "json-schema";
|
|
2
|
-
import { PromptFormats, PromptSegment } from "./types.js";
|
|
3
|
-
export declare function inferFormatterFromModelName(modelName: string): PromptFormats;
|
|
4
|
-
export declare const PromptFormatters: Record<PromptFormats, (messages: PromptSegment[], schema?: JSONSchema4) => any>;
|
|
5
|
-
//# sourceMappingURL=formatters.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../src/formatters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,OAAO,EACH,aAAa,EAEb,aAAa,EAChB,MAAM,YAAY,CAAC;AAEpB,wBAAgB,2BAA2B,CAAC,SAAS,EAAE,MAAM,GAAG,aAAa,CAW5E;AAED,eAAO,MAAM,gBAAgB,EAAE,MAAM,CACjC,aAAa,EACb,CAAC,QAAQ,EAAE,aAAa,EAAE,EAAE,MAAM,CAAC,EAAE,WAAW,KAAK,GAAG,CAM3D,CAAC"}
|
package/lib/types/test.d.ts
DELETED
package/lib/types/test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/test.ts"],"names":[],"mappings":""}
|