braintrust 0.0.90 → 0.0.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.js +106 -12
- package/dist/cli.js +77 -16
- package/dist/gitutil.d.ts +2 -22
- package/dist/index.js +134 -20
- package/dist/isomorph.d.ts +2 -11
- package/dist/logger.d.ts +7 -3
- package/dist/oai.d.ts +5 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/browser.js
CHANGED
|
@@ -12,7 +12,7 @@ var DefaultAsyncLocalStorage = class {
|
|
|
12
12
|
}
|
|
13
13
|
};
|
|
14
14
|
var iso = {
|
|
15
|
-
getRepoStatus: async () => void 0,
|
|
15
|
+
getRepoStatus: async (_settings) => void 0,
|
|
16
16
|
getPastNAncestors: async () => [],
|
|
17
17
|
getEnv: (_name) => void 0,
|
|
18
18
|
getCallerLocation: () => void 0,
|
|
@@ -131,6 +131,33 @@ function mergeRowBatch(rows) {
|
|
|
131
131
|
out.push(...Object.values(rowGroups));
|
|
132
132
|
return out;
|
|
133
133
|
}
|
|
134
|
+
var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
|
|
135
|
+
SpanTypeAttribute2["LLM"] = "llm";
|
|
136
|
+
SpanTypeAttribute2["SCORE"] = "score";
|
|
137
|
+
SpanTypeAttribute2["FUNCTION"] = "function";
|
|
138
|
+
SpanTypeAttribute2["EVAL"] = "eval";
|
|
139
|
+
SpanTypeAttribute2["TASK"] = "task";
|
|
140
|
+
SpanTypeAttribute2["TOOL"] = "tool";
|
|
141
|
+
return SpanTypeAttribute2;
|
|
142
|
+
})(SpanTypeAttribute || {});
|
|
143
|
+
function mergeGitMetadataSettings(s1, s2) {
|
|
144
|
+
var _a;
|
|
145
|
+
if (s1.collect === "all") {
|
|
146
|
+
return s2;
|
|
147
|
+
} else if (s2.collect === "all") {
|
|
148
|
+
return s1;
|
|
149
|
+
} else if (s1.collect === "none") {
|
|
150
|
+
return s1;
|
|
151
|
+
} else if (s2.collect === "none") {
|
|
152
|
+
return s2;
|
|
153
|
+
}
|
|
154
|
+
const fields = ((_a = s1.fields) != null ? _a : []).filter((f) => {
|
|
155
|
+
var _a2;
|
|
156
|
+
return ((_a2 = s2.fields) != null ? _a2 : []).includes(f);
|
|
157
|
+
});
|
|
158
|
+
const collect = fields.length > 0 ? "some" : "none";
|
|
159
|
+
return { collect, fields };
|
|
160
|
+
}
|
|
134
161
|
|
|
135
162
|
// src/util.ts
|
|
136
163
|
var GLOBAL_PROJECT = "Global";
|
|
@@ -207,6 +234,7 @@ var BraintrustState = class {
|
|
|
207
234
|
this.orgName = null;
|
|
208
235
|
this.logUrl = null;
|
|
209
236
|
this.loggedIn = false;
|
|
237
|
+
this.gitMetadataSettings = void 0;
|
|
210
238
|
this._apiConn = null;
|
|
211
239
|
this._logConn = null;
|
|
212
240
|
}
|
|
@@ -440,7 +468,7 @@ var Logger = class {
|
|
|
440
468
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
441
469
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
|
|
442
470
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
443
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
471
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
444
472
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
445
473
|
* :returns: The `id` of the logged event.
|
|
446
474
|
*/
|
|
@@ -648,7 +676,8 @@ function init(project, options = {}) {
|
|
|
648
676
|
apiUrl,
|
|
649
677
|
apiKey,
|
|
650
678
|
orgName,
|
|
651
|
-
metadata
|
|
679
|
+
metadata,
|
|
680
|
+
gitMetadataSettings
|
|
652
681
|
} = options || {};
|
|
653
682
|
const lazyMetadata = (async () => {
|
|
654
683
|
await login({
|
|
@@ -669,7 +698,18 @@ function init(project, options = {}) {
|
|
|
669
698
|
if (update) {
|
|
670
699
|
args["update"] = update;
|
|
671
700
|
}
|
|
672
|
-
|
|
701
|
+
let mergedGitMetadataSettings = {
|
|
702
|
+
..._state.gitMetadataSettings || {
|
|
703
|
+
collect: "all"
|
|
704
|
+
}
|
|
705
|
+
};
|
|
706
|
+
if (gitMetadataSettings) {
|
|
707
|
+
mergedGitMetadataSettings = mergeGitMetadataSettings(
|
|
708
|
+
mergedGitMetadataSettings,
|
|
709
|
+
gitMetadataSettings
|
|
710
|
+
);
|
|
711
|
+
}
|
|
712
|
+
const repoStatus = await isomorph_default.getRepoStatus(gitMetadataSettings);
|
|
673
713
|
if (repoStatus) {
|
|
674
714
|
args["repo_info"] = repoStatus;
|
|
675
715
|
}
|
|
@@ -963,6 +1003,7 @@ function _check_org_info(org_info, org_name) {
|
|
|
963
1003
|
_state.orgId = org.id;
|
|
964
1004
|
_state.orgName = org.name;
|
|
965
1005
|
_state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
|
|
1006
|
+
_state.gitMetadataSettings = org.git_metadata || void 0;
|
|
966
1007
|
break;
|
|
967
1008
|
}
|
|
968
1009
|
}
|
|
@@ -1081,7 +1122,7 @@ var Experiment = class {
|
|
|
1081
1122
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
1082
1123
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
|
|
1083
1124
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
1084
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
1125
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
1085
1126
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
1086
1127
|
* @param event.dataset_record_id: (Optional) the id of the dataset record that this event is associated with. This field is required if and only if the experiment is associated with a dataset.
|
|
1087
1128
|
* @param event.inputs: (Deprecated) the same as `input` (will be removed in a future version).
|
|
@@ -1241,9 +1282,9 @@ var SpanImpl = class _SpanImpl {
|
|
|
1241
1282
|
})();
|
|
1242
1283
|
this.internalData = {
|
|
1243
1284
|
metrics: {
|
|
1244
|
-
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
1245
|
-
...callerLocation
|
|
1285
|
+
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
1246
1286
|
},
|
|
1287
|
+
context: { ...callerLocation },
|
|
1247
1288
|
span_attributes: { ...args.spanAttributes, name },
|
|
1248
1289
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
1249
1290
|
};
|
|
@@ -1569,6 +1610,7 @@ function wrapOpenAI(openai) {
|
|
|
1569
1610
|
return openai;
|
|
1570
1611
|
}
|
|
1571
1612
|
}
|
|
1613
|
+
globalThis.__inherited_braintrust_wrap_openai = wrapOpenAI;
|
|
1572
1614
|
function wrapOpenAIv4(openai) {
|
|
1573
1615
|
let completionProxy = new Proxy(openai.chat.completions, {
|
|
1574
1616
|
get(target, name, receiver) {
|
|
@@ -1587,6 +1629,15 @@ function wrapOpenAIv4(openai) {
|
|
|
1587
1629
|
return Reflect.get(target, name, receiver);
|
|
1588
1630
|
}
|
|
1589
1631
|
});
|
|
1632
|
+
let embeddingProxy = new Proxy(openai.embeddings, {
|
|
1633
|
+
get(target, name, receiver) {
|
|
1634
|
+
const baseVal = Reflect.get(target, name, receiver);
|
|
1635
|
+
if (name === "create") {
|
|
1636
|
+
return wrapEmbeddings(baseVal.bind(target));
|
|
1637
|
+
}
|
|
1638
|
+
return baseVal;
|
|
1639
|
+
}
|
|
1640
|
+
});
|
|
1590
1641
|
let betaProxy;
|
|
1591
1642
|
if (openai.beta?.chat?.completions?.stream) {
|
|
1592
1643
|
let betaChatCompletionProxy = new Proxy(openai?.beta?.chat.completions, {
|
|
@@ -1620,6 +1671,9 @@ function wrapOpenAIv4(openai) {
|
|
|
1620
1671
|
if (name === "chat") {
|
|
1621
1672
|
return chatProxy;
|
|
1622
1673
|
}
|
|
1674
|
+
if (name === "embeddings") {
|
|
1675
|
+
return embeddingProxy;
|
|
1676
|
+
}
|
|
1623
1677
|
if (name === "beta" && betaProxy) {
|
|
1624
1678
|
return betaProxy;
|
|
1625
1679
|
}
|
|
@@ -1629,10 +1683,13 @@ function wrapOpenAIv4(openai) {
|
|
|
1629
1683
|
return proxy;
|
|
1630
1684
|
}
|
|
1631
1685
|
function wrapBetaChatCompletion(completion) {
|
|
1632
|
-
return
|
|
1686
|
+
return (params) => {
|
|
1633
1687
|
const { messages, ...rest } = params;
|
|
1634
1688
|
const span = startSpan({
|
|
1635
1689
|
name: "OpenAI Chat Completion",
|
|
1690
|
+
spanAttributes: {
|
|
1691
|
+
type: SpanTypeAttribute.LLM
|
|
1692
|
+
},
|
|
1636
1693
|
event: {
|
|
1637
1694
|
input: messages,
|
|
1638
1695
|
metadata: {
|
|
@@ -1641,7 +1698,7 @@ function wrapBetaChatCompletion(completion) {
|
|
|
1641
1698
|
}
|
|
1642
1699
|
});
|
|
1643
1700
|
const startTime = getCurrentUnixTimestamp();
|
|
1644
|
-
const ret =
|
|
1701
|
+
const ret = completion(params);
|
|
1645
1702
|
let first = true;
|
|
1646
1703
|
ret.on("chunk", (_chunk) => {
|
|
1647
1704
|
if (first) {
|
|
@@ -1666,10 +1723,13 @@ function wrapBetaChatCompletion(completion) {
|
|
|
1666
1723
|
};
|
|
1667
1724
|
}
|
|
1668
1725
|
function wrapChatCompletion(completion) {
|
|
1669
|
-
return async (params) => {
|
|
1726
|
+
return async (params, options) => {
|
|
1670
1727
|
const { messages, ...rest } = params;
|
|
1671
1728
|
const span = startSpan({
|
|
1672
1729
|
name: "OpenAI Chat Completion",
|
|
1730
|
+
spanAttributes: {
|
|
1731
|
+
type: SpanTypeAttribute.LLM
|
|
1732
|
+
},
|
|
1673
1733
|
event: {
|
|
1674
1734
|
input: messages,
|
|
1675
1735
|
metadata: {
|
|
@@ -1679,11 +1739,14 @@ function wrapChatCompletion(completion) {
|
|
|
1679
1739
|
});
|
|
1680
1740
|
if (params.stream) {
|
|
1681
1741
|
const startTime = getCurrentUnixTimestamp();
|
|
1682
|
-
const ret = await completion(params);
|
|
1742
|
+
const ret = await completion(params, options);
|
|
1683
1743
|
return new WrapperStream(span, startTime, ret);
|
|
1684
1744
|
} else {
|
|
1685
1745
|
try {
|
|
1686
|
-
const ret = await completion(
|
|
1746
|
+
const ret = await completion(
|
|
1747
|
+
params,
|
|
1748
|
+
options
|
|
1749
|
+
);
|
|
1687
1750
|
const { messages: messages2, ...rest2 } = params;
|
|
1688
1751
|
span.log({
|
|
1689
1752
|
input: messages2,
|
|
@@ -1704,6 +1767,37 @@ function wrapChatCompletion(completion) {
|
|
|
1704
1767
|
}
|
|
1705
1768
|
};
|
|
1706
1769
|
}
|
|
1770
|
+
function wrapEmbeddings(create) {
|
|
1771
|
+
return async (params, options) => {
|
|
1772
|
+
const { input, ...rest } = params;
|
|
1773
|
+
return traced(
|
|
1774
|
+
async (span) => {
|
|
1775
|
+
const result = await create(params, options);
|
|
1776
|
+
const output = result.data[0];
|
|
1777
|
+
span.log({
|
|
1778
|
+
output,
|
|
1779
|
+
metrics: {
|
|
1780
|
+
tokens: result.usage?.total_tokens,
|
|
1781
|
+
prompt_tokens: result.usage?.prompt_tokens
|
|
1782
|
+
}
|
|
1783
|
+
});
|
|
1784
|
+
return result;
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
name: "OpenAI Embedding",
|
|
1788
|
+
spanAttributes: {
|
|
1789
|
+
type: SpanTypeAttribute.LLM
|
|
1790
|
+
},
|
|
1791
|
+
event: {
|
|
1792
|
+
input,
|
|
1793
|
+
metadata: {
|
|
1794
|
+
...rest
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
);
|
|
1799
|
+
};
|
|
1800
|
+
}
|
|
1707
1801
|
var WrapperStream = class {
|
|
1708
1802
|
constructor(span, startTime, iter) {
|
|
1709
1803
|
this.span = span;
|
package/dist/cli.js
CHANGED
|
@@ -9065,7 +9065,7 @@ var require_package = __commonJS({
|
|
|
9065
9065
|
"package.json"(exports2, module2) {
|
|
9066
9066
|
module2.exports = {
|
|
9067
9067
|
name: "braintrust",
|
|
9068
|
-
version: "0.0.
|
|
9068
|
+
version: "0.0.92",
|
|
9069
9069
|
description: "SDK for integrating Braintrust",
|
|
9070
9070
|
main: "./dist/index.js",
|
|
9071
9071
|
browser: {
|
|
@@ -9108,7 +9108,7 @@ var require_package = __commonJS({
|
|
|
9108
9108
|
typescript: "^5.3.3"
|
|
9109
9109
|
},
|
|
9110
9110
|
dependencies: {
|
|
9111
|
-
"@braintrust/core": "^0.0.
|
|
9111
|
+
"@braintrust/core": "^0.0.13",
|
|
9112
9112
|
argparse: "^2.0.1",
|
|
9113
9113
|
chalk: "^4.1.2",
|
|
9114
9114
|
"cli-progress": "^3.12.0",
|
|
@@ -10569,6 +10569,33 @@ function mergeRowBatch(rows) {
|
|
|
10569
10569
|
out.push(...Object.values(rowGroups));
|
|
10570
10570
|
return out;
|
|
10571
10571
|
}
|
|
10572
|
+
var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
|
|
10573
|
+
SpanTypeAttribute2["LLM"] = "llm";
|
|
10574
|
+
SpanTypeAttribute2["SCORE"] = "score";
|
|
10575
|
+
SpanTypeAttribute2["FUNCTION"] = "function";
|
|
10576
|
+
SpanTypeAttribute2["EVAL"] = "eval";
|
|
10577
|
+
SpanTypeAttribute2["TASK"] = "task";
|
|
10578
|
+
SpanTypeAttribute2["TOOL"] = "tool";
|
|
10579
|
+
return SpanTypeAttribute2;
|
|
10580
|
+
})(SpanTypeAttribute || {});
|
|
10581
|
+
function mergeGitMetadataSettings(s1, s2) {
|
|
10582
|
+
var _a2;
|
|
10583
|
+
if (s1.collect === "all") {
|
|
10584
|
+
return s2;
|
|
10585
|
+
} else if (s2.collect === "all") {
|
|
10586
|
+
return s1;
|
|
10587
|
+
} else if (s1.collect === "none") {
|
|
10588
|
+
return s1;
|
|
10589
|
+
} else if (s2.collect === "none") {
|
|
10590
|
+
return s2;
|
|
10591
|
+
}
|
|
10592
|
+
const fields = ((_a2 = s1.fields) != null ? _a2 : []).filter((f) => {
|
|
10593
|
+
var _a22;
|
|
10594
|
+
return ((_a22 = s2.fields) != null ? _a22 : []).includes(f);
|
|
10595
|
+
});
|
|
10596
|
+
const collect = fields.length > 0 ? "some" : "none";
|
|
10597
|
+
return { collect, fields };
|
|
10598
|
+
}
|
|
10572
10599
|
|
|
10573
10600
|
// src/isomorph.ts
|
|
10574
10601
|
var DefaultAsyncLocalStorage = class {
|
|
@@ -10584,7 +10611,7 @@ var DefaultAsyncLocalStorage = class {
|
|
|
10584
10611
|
}
|
|
10585
10612
|
};
|
|
10586
10613
|
var iso = {
|
|
10587
|
-
getRepoStatus: async () => void 0,
|
|
10614
|
+
getRepoStatus: async (_settings) => void 0,
|
|
10588
10615
|
getPastNAncestors: async () => [],
|
|
10589
10616
|
getEnv: (_name) => void 0,
|
|
10590
10617
|
getCallerLocation: () => void 0,
|
|
@@ -10668,6 +10695,7 @@ var BraintrustState = class {
|
|
|
10668
10695
|
this.orgName = null;
|
|
10669
10696
|
this.logUrl = null;
|
|
10670
10697
|
this.loggedIn = false;
|
|
10698
|
+
this.gitMetadataSettings = void 0;
|
|
10671
10699
|
this._apiConn = null;
|
|
10672
10700
|
this._logConn = null;
|
|
10673
10701
|
}
|
|
@@ -10975,7 +11003,8 @@ function init(project, options = {}) {
|
|
|
10975
11003
|
apiUrl,
|
|
10976
11004
|
apiKey,
|
|
10977
11005
|
orgName,
|
|
10978
|
-
metadata
|
|
11006
|
+
metadata,
|
|
11007
|
+
gitMetadataSettings
|
|
10979
11008
|
} = options || {};
|
|
10980
11009
|
const lazyMetadata = (async () => {
|
|
10981
11010
|
await login({
|
|
@@ -10996,9 +11025,20 @@ function init(project, options = {}) {
|
|
|
10996
11025
|
if (update) {
|
|
10997
11026
|
args["update"] = update;
|
|
10998
11027
|
}
|
|
10999
|
-
|
|
11000
|
-
|
|
11001
|
-
|
|
11028
|
+
let mergedGitMetadataSettings = {
|
|
11029
|
+
..._state.gitMetadataSettings || {
|
|
11030
|
+
collect: "all"
|
|
11031
|
+
}
|
|
11032
|
+
};
|
|
11033
|
+
if (gitMetadataSettings) {
|
|
11034
|
+
mergedGitMetadataSettings = mergeGitMetadataSettings(
|
|
11035
|
+
mergedGitMetadataSettings,
|
|
11036
|
+
gitMetadataSettings
|
|
11037
|
+
);
|
|
11038
|
+
}
|
|
11039
|
+
const repoStatus2 = await isomorph_default.getRepoStatus(gitMetadataSettings);
|
|
11040
|
+
if (repoStatus2) {
|
|
11041
|
+
args["repo_info"] = repoStatus2;
|
|
11002
11042
|
}
|
|
11003
11043
|
if (baseExperiment) {
|
|
11004
11044
|
args["base_experiment"] = baseExperiment;
|
|
@@ -11102,6 +11142,7 @@ function _check_org_info(org_info, org_name) {
|
|
|
11102
11142
|
_state.orgId = org.id;
|
|
11103
11143
|
_state.orgName = org.name;
|
|
11104
11144
|
_state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
|
|
11145
|
+
_state.gitMetadataSettings = org.git_metadata || void 0;
|
|
11105
11146
|
break;
|
|
11106
11147
|
}
|
|
11107
11148
|
}
|
|
@@ -11220,7 +11261,7 @@ var Experiment = class {
|
|
|
11220
11261
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
11221
11262
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
|
|
11222
11263
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
11223
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
11264
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
11224
11265
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
11225
11266
|
* @param event.dataset_record_id: (Optional) the id of the dataset record that this event is associated with. This field is required if and only if the experiment is associated with a dataset.
|
|
11226
11267
|
* @param event.inputs: (Deprecated) the same as `input` (will be removed in a future version).
|
|
@@ -11380,9 +11421,9 @@ var SpanImpl = class _SpanImpl {
|
|
|
11380
11421
|
})();
|
|
11381
11422
|
this.internalData = {
|
|
11382
11423
|
metrics: {
|
|
11383
|
-
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
11384
|
-
...callerLocation
|
|
11424
|
+
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
11385
11425
|
},
|
|
11426
|
+
context: { ...callerLocation },
|
|
11386
11427
|
span_attributes: { ...args.spanAttributes, name },
|
|
11387
11428
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
11388
11429
|
};
|
|
@@ -11873,7 +11914,7 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
11873
11914
|
}
|
|
11874
11915
|
span.log({ input: datum.input, output });
|
|
11875
11916
|
},
|
|
11876
|
-
{ name: "task" }
|
|
11917
|
+
{ name: "task", spanAttributes: { type: SpanTypeAttribute.TASK } }
|
|
11877
11918
|
);
|
|
11878
11919
|
rootSpan.log({ output });
|
|
11879
11920
|
const scoringArgs = { ...datum, metadata, output };
|
|
@@ -11896,6 +11937,9 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
11896
11937
|
},
|
|
11897
11938
|
{
|
|
11898
11939
|
name: score.name || `scorer_${score_idx}`,
|
|
11940
|
+
spanAttributes: {
|
|
11941
|
+
type: SpanTypeAttribute.SCORE
|
|
11942
|
+
},
|
|
11899
11943
|
event: { input: scoringArgs }
|
|
11900
11944
|
}
|
|
11901
11945
|
);
|
|
@@ -11935,6 +11979,9 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
11935
11979
|
} else {
|
|
11936
11980
|
return await experiment.traced(callback, {
|
|
11937
11981
|
name: "eval",
|
|
11982
|
+
spanAttributes: {
|
|
11983
|
+
type: SpanTypeAttribute.EVAL
|
|
11984
|
+
},
|
|
11938
11985
|
event: {
|
|
11939
11986
|
input: datum.input,
|
|
11940
11987
|
expected: datum.expected
|
|
@@ -16002,9 +16049,7 @@ async function getBaseBranchAncestor(remote = void 0) {
|
|
|
16002
16049
|
if (git === null) {
|
|
16003
16050
|
throw new Error("Not in a git repo");
|
|
16004
16051
|
}
|
|
16005
|
-
const { remote: remoteName, branch: baseBranch } = await getBaseBranch(
|
|
16006
|
-
remote
|
|
16007
|
-
);
|
|
16052
|
+
const { remote: remoteName, branch: baseBranch } = await getBaseBranch(remote);
|
|
16008
16053
|
const isDirty = (await git.diffSummary()).files.length > 0;
|
|
16009
16054
|
const head = isDirty ? "HEAD" : "HEAD^";
|
|
16010
16055
|
try {
|
|
@@ -16053,7 +16098,21 @@ function truncateToByteLimit(s, byteLimit = 65536) {
|
|
|
16053
16098
|
const truncated = encoded.subarray(0, byteLimit);
|
|
16054
16099
|
return new TextDecoder().decode(truncated);
|
|
16055
16100
|
}
|
|
16056
|
-
async function getRepoStatus() {
|
|
16101
|
+
async function getRepoStatus(settings) {
|
|
16102
|
+
if (settings && settings.collect === "none") {
|
|
16103
|
+
return void 0;
|
|
16104
|
+
}
|
|
16105
|
+
const repo = await repoStatus();
|
|
16106
|
+
if (!repo || !settings || settings.collect === "all") {
|
|
16107
|
+
return repo;
|
|
16108
|
+
}
|
|
16109
|
+
let sanitized = {};
|
|
16110
|
+
settings.fields?.forEach((field) => {
|
|
16111
|
+
sanitized = { ...sanitized, [field]: repo[field] };
|
|
16112
|
+
});
|
|
16113
|
+
return sanitized;
|
|
16114
|
+
}
|
|
16115
|
+
async function repoStatus() {
|
|
16057
16116
|
const git = await currentRepo();
|
|
16058
16117
|
if (git === null) {
|
|
16059
16118
|
return void 0;
|
|
@@ -16087,7 +16146,9 @@ async function getRepoStatus() {
|
|
|
16087
16146
|
async () => (await git.raw(["rev-parse", "--abbrev-ref", "HEAD"])).trim()
|
|
16088
16147
|
);
|
|
16089
16148
|
if (dirty) {
|
|
16090
|
-
git_diff = await attempt(
|
|
16149
|
+
git_diff = await attempt(
|
|
16150
|
+
async () => truncateToByteLimit(await git.raw(["diff", "HEAD"]))
|
|
16151
|
+
);
|
|
16091
16152
|
}
|
|
16092
16153
|
return {
|
|
16093
16154
|
commit,
|
package/dist/gitutil.d.ts
CHANGED
|
@@ -1,27 +1,7 @@
|
|
|
1
|
+
import { GitMetadataSettings, RepoStatus } from "@braintrust/core";
|
|
1
2
|
/**
|
|
2
3
|
* Information about the current HEAD of the repo.
|
|
3
4
|
*/
|
|
4
|
-
export interface RepoStatus {
|
|
5
|
-
commit?: string;
|
|
6
|
-
branch?: string;
|
|
7
|
-
tag?: string;
|
|
8
|
-
dirty: boolean;
|
|
9
|
-
author_name?: string;
|
|
10
|
-
author_email?: string;
|
|
11
|
-
commit_message?: string;
|
|
12
|
-
commit_time?: string;
|
|
13
|
-
git_diff?: string;
|
|
14
|
-
}
|
|
15
5
|
export declare function currentRepo(): Promise<import("simple-git").SimpleGit | null>;
|
|
16
6
|
export declare function getPastNAncestors(n?: number, remote?: string | undefined): Promise<string[]>;
|
|
17
|
-
export declare function getRepoStatus(): Promise<
|
|
18
|
-
commit: string | undefined;
|
|
19
|
-
branch: string | undefined;
|
|
20
|
-
tag: string | undefined;
|
|
21
|
-
dirty: boolean;
|
|
22
|
-
author_name: string | undefined;
|
|
23
|
-
author_email: string | undefined;
|
|
24
|
-
commit_message: string | undefined;
|
|
25
|
-
commit_time: string | undefined;
|
|
26
|
-
git_diff: string | undefined;
|
|
27
|
-
} | undefined>;
|
|
7
|
+
export declare function getRepoStatus(settings?: GitMetadataSettings): Promise<RepoStatus | undefined>;
|
package/dist/index.js
CHANGED
|
@@ -3693,7 +3693,7 @@ var DefaultAsyncLocalStorage = class {
|
|
|
3693
3693
|
}
|
|
3694
3694
|
};
|
|
3695
3695
|
var iso = {
|
|
3696
|
-
getRepoStatus: async () => void 0,
|
|
3696
|
+
getRepoStatus: async (_settings) => void 0,
|
|
3697
3697
|
getPastNAncestors: async () => [],
|
|
3698
3698
|
getEnv: (_name) => void 0,
|
|
3699
3699
|
getCallerLocation: () => void 0,
|
|
@@ -7681,9 +7681,7 @@ async function getBaseBranchAncestor(remote = void 0) {
|
|
|
7681
7681
|
if (git === null) {
|
|
7682
7682
|
throw new Error("Not in a git repo");
|
|
7683
7683
|
}
|
|
7684
|
-
const { remote: remoteName, branch: baseBranch } = await getBaseBranch(
|
|
7685
|
-
remote
|
|
7686
|
-
);
|
|
7684
|
+
const { remote: remoteName, branch: baseBranch } = await getBaseBranch(remote);
|
|
7687
7685
|
const isDirty = (await git.diffSummary()).files.length > 0;
|
|
7688
7686
|
const head = isDirty ? "HEAD" : "HEAD^";
|
|
7689
7687
|
try {
|
|
@@ -7732,7 +7730,21 @@ function truncateToByteLimit(s, byteLimit = 65536) {
|
|
|
7732
7730
|
const truncated = encoded.subarray(0, byteLimit);
|
|
7733
7731
|
return new TextDecoder().decode(truncated);
|
|
7734
7732
|
}
|
|
7735
|
-
async function getRepoStatus() {
|
|
7733
|
+
async function getRepoStatus(settings) {
|
|
7734
|
+
if (settings && settings.collect === "none") {
|
|
7735
|
+
return void 0;
|
|
7736
|
+
}
|
|
7737
|
+
const repo = await repoStatus();
|
|
7738
|
+
if (!repo || !settings || settings.collect === "all") {
|
|
7739
|
+
return repo;
|
|
7740
|
+
}
|
|
7741
|
+
let sanitized = {};
|
|
7742
|
+
settings.fields?.forEach((field) => {
|
|
7743
|
+
sanitized = { ...sanitized, [field]: repo[field] };
|
|
7744
|
+
});
|
|
7745
|
+
return sanitized;
|
|
7746
|
+
}
|
|
7747
|
+
async function repoStatus() {
|
|
7736
7748
|
const git = await currentRepo();
|
|
7737
7749
|
if (git === null) {
|
|
7738
7750
|
return void 0;
|
|
@@ -7766,7 +7778,9 @@ async function getRepoStatus() {
|
|
|
7766
7778
|
async () => (await git.raw(["rev-parse", "--abbrev-ref", "HEAD"])).trim()
|
|
7767
7779
|
);
|
|
7768
7780
|
if (dirty) {
|
|
7769
|
-
git_diff = await attempt(
|
|
7781
|
+
git_diff = await attempt(
|
|
7782
|
+
async () => truncateToByteLimit(await git.raw(["diff", "HEAD"]))
|
|
7783
|
+
);
|
|
7770
7784
|
}
|
|
7771
7785
|
return {
|
|
7772
7786
|
commit,
|
|
@@ -7933,6 +7947,33 @@ function mergeRowBatch(rows) {
|
|
|
7933
7947
|
out.push(...Object.values(rowGroups));
|
|
7934
7948
|
return out;
|
|
7935
7949
|
}
|
|
7950
|
+
var SpanTypeAttribute = /* @__PURE__ */ ((SpanTypeAttribute2) => {
|
|
7951
|
+
SpanTypeAttribute2["LLM"] = "llm";
|
|
7952
|
+
SpanTypeAttribute2["SCORE"] = "score";
|
|
7953
|
+
SpanTypeAttribute2["FUNCTION"] = "function";
|
|
7954
|
+
SpanTypeAttribute2["EVAL"] = "eval";
|
|
7955
|
+
SpanTypeAttribute2["TASK"] = "task";
|
|
7956
|
+
SpanTypeAttribute2["TOOL"] = "tool";
|
|
7957
|
+
return SpanTypeAttribute2;
|
|
7958
|
+
})(SpanTypeAttribute || {});
|
|
7959
|
+
function mergeGitMetadataSettings(s1, s2) {
|
|
7960
|
+
var _a2;
|
|
7961
|
+
if (s1.collect === "all") {
|
|
7962
|
+
return s2;
|
|
7963
|
+
} else if (s2.collect === "all") {
|
|
7964
|
+
return s1;
|
|
7965
|
+
} else if (s1.collect === "none") {
|
|
7966
|
+
return s1;
|
|
7967
|
+
} else if (s2.collect === "none") {
|
|
7968
|
+
return s2;
|
|
7969
|
+
}
|
|
7970
|
+
const fields = ((_a2 = s1.fields) != null ? _a2 : []).filter((f) => {
|
|
7971
|
+
var _a22;
|
|
7972
|
+
return ((_a22 = s2.fields) != null ? _a22 : []).includes(f);
|
|
7973
|
+
});
|
|
7974
|
+
const collect = fields.length > 0 ? "some" : "none";
|
|
7975
|
+
return { collect, fields };
|
|
7976
|
+
}
|
|
7936
7977
|
|
|
7937
7978
|
// src/util.ts
|
|
7938
7979
|
var GLOBAL_PROJECT = "Global";
|
|
@@ -8009,6 +8050,7 @@ var BraintrustState = class {
|
|
|
8009
8050
|
this.orgName = null;
|
|
8010
8051
|
this.logUrl = null;
|
|
8011
8052
|
this.loggedIn = false;
|
|
8053
|
+
this.gitMetadataSettings = void 0;
|
|
8012
8054
|
this._apiConn = null;
|
|
8013
8055
|
this._logConn = null;
|
|
8014
8056
|
}
|
|
@@ -8242,7 +8284,7 @@ var Logger = class {
|
|
|
8242
8284
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
8243
8285
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
|
|
8244
8286
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
8245
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
8287
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
8246
8288
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
8247
8289
|
* :returns: The `id` of the logged event.
|
|
8248
8290
|
*/
|
|
@@ -8450,7 +8492,8 @@ function init(project, options = {}) {
|
|
|
8450
8492
|
apiUrl,
|
|
8451
8493
|
apiKey,
|
|
8452
8494
|
orgName,
|
|
8453
|
-
metadata
|
|
8495
|
+
metadata,
|
|
8496
|
+
gitMetadataSettings
|
|
8454
8497
|
} = options || {};
|
|
8455
8498
|
const lazyMetadata = (async () => {
|
|
8456
8499
|
await login({
|
|
@@ -8471,9 +8514,20 @@ function init(project, options = {}) {
|
|
|
8471
8514
|
if (update) {
|
|
8472
8515
|
args["update"] = update;
|
|
8473
8516
|
}
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8517
|
+
let mergedGitMetadataSettings = {
|
|
8518
|
+
..._state.gitMetadataSettings || {
|
|
8519
|
+
collect: "all"
|
|
8520
|
+
}
|
|
8521
|
+
};
|
|
8522
|
+
if (gitMetadataSettings) {
|
|
8523
|
+
mergedGitMetadataSettings = mergeGitMetadataSettings(
|
|
8524
|
+
mergedGitMetadataSettings,
|
|
8525
|
+
gitMetadataSettings
|
|
8526
|
+
);
|
|
8527
|
+
}
|
|
8528
|
+
const repoStatus2 = await isomorph_default.getRepoStatus(gitMetadataSettings);
|
|
8529
|
+
if (repoStatus2) {
|
|
8530
|
+
args["repo_info"] = repoStatus2;
|
|
8477
8531
|
}
|
|
8478
8532
|
if (baseExperiment) {
|
|
8479
8533
|
args["base_experiment"] = baseExperiment;
|
|
@@ -8765,6 +8819,7 @@ function _check_org_info(org_info, org_name) {
|
|
|
8765
8819
|
_state.orgId = org.id;
|
|
8766
8820
|
_state.orgName = org.name;
|
|
8767
8821
|
_state.logUrl = isomorph_default.getEnv("BRAINTRUST_LOG_URL") ?? org.api_url;
|
|
8822
|
+
_state.gitMetadataSettings = org.git_metadata || void 0;
|
|
8768
8823
|
break;
|
|
8769
8824
|
}
|
|
8770
8825
|
}
|
|
@@ -8883,7 +8938,7 @@ var Experiment = class {
|
|
|
8883
8938
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
8884
8939
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
|
|
8885
8940
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
8886
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
8941
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
8887
8942
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
8888
8943
|
* @param event.dataset_record_id: (Optional) the id of the dataset record that this event is associated with. This field is required if and only if the experiment is associated with a dataset.
|
|
8889
8944
|
* @param event.inputs: (Deprecated) the same as `input` (will be removed in a future version).
|
|
@@ -9043,9 +9098,9 @@ var SpanImpl = class _SpanImpl {
|
|
|
9043
9098
|
})();
|
|
9044
9099
|
this.internalData = {
|
|
9045
9100
|
metrics: {
|
|
9046
|
-
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
9047
|
-
...callerLocation
|
|
9101
|
+
start: args.startTime ?? getCurrentUnixTimestamp()
|
|
9048
9102
|
},
|
|
9103
|
+
context: { ...callerLocation },
|
|
9049
9104
|
span_attributes: { ...args.spanAttributes, name },
|
|
9050
9105
|
created: (/* @__PURE__ */ new Date()).toISOString()
|
|
9051
9106
|
};
|
|
@@ -9493,7 +9548,7 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
9493
9548
|
}
|
|
9494
9549
|
span.log({ input: datum.input, output });
|
|
9495
9550
|
},
|
|
9496
|
-
{ name: "task" }
|
|
9551
|
+
{ name: "task", spanAttributes: { type: SpanTypeAttribute.TASK } }
|
|
9497
9552
|
);
|
|
9498
9553
|
rootSpan.log({ output });
|
|
9499
9554
|
const scoringArgs = { ...datum, metadata, output };
|
|
@@ -9516,6 +9571,9 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
9516
9571
|
},
|
|
9517
9572
|
{
|
|
9518
9573
|
name: score.name || `scorer_${score_idx}`,
|
|
9574
|
+
spanAttributes: {
|
|
9575
|
+
type: SpanTypeAttribute.SCORE
|
|
9576
|
+
},
|
|
9519
9577
|
event: { input: scoringArgs }
|
|
9520
9578
|
}
|
|
9521
9579
|
);
|
|
@@ -9555,6 +9613,9 @@ async function runEvaluator(experiment, evaluator, progressReporter, filters) {
|
|
|
9555
9613
|
} else {
|
|
9556
9614
|
return await experiment.traced(callback, {
|
|
9557
9615
|
name: "eval",
|
|
9616
|
+
spanAttributes: {
|
|
9617
|
+
type: SpanTypeAttribute.EVAL
|
|
9618
|
+
},
|
|
9558
9619
|
event: {
|
|
9559
9620
|
input: datum.input,
|
|
9560
9621
|
expected: datum.expected
|
|
@@ -9650,6 +9711,7 @@ function wrapOpenAI(openai) {
|
|
|
9650
9711
|
return openai;
|
|
9651
9712
|
}
|
|
9652
9713
|
}
|
|
9714
|
+
globalThis.__inherited_braintrust_wrap_openai = wrapOpenAI;
|
|
9653
9715
|
function wrapOpenAIv4(openai) {
|
|
9654
9716
|
let completionProxy = new Proxy(openai.chat.completions, {
|
|
9655
9717
|
get(target, name, receiver) {
|
|
@@ -9668,6 +9730,15 @@ function wrapOpenAIv4(openai) {
|
|
|
9668
9730
|
return Reflect.get(target, name, receiver);
|
|
9669
9731
|
}
|
|
9670
9732
|
});
|
|
9733
|
+
let embeddingProxy = new Proxy(openai.embeddings, {
|
|
9734
|
+
get(target, name, receiver) {
|
|
9735
|
+
const baseVal = Reflect.get(target, name, receiver);
|
|
9736
|
+
if (name === "create") {
|
|
9737
|
+
return wrapEmbeddings(baseVal.bind(target));
|
|
9738
|
+
}
|
|
9739
|
+
return baseVal;
|
|
9740
|
+
}
|
|
9741
|
+
});
|
|
9671
9742
|
let betaProxy;
|
|
9672
9743
|
if (openai.beta?.chat?.completions?.stream) {
|
|
9673
9744
|
let betaChatCompletionProxy = new Proxy(openai?.beta?.chat.completions, {
|
|
@@ -9701,6 +9772,9 @@ function wrapOpenAIv4(openai) {
|
|
|
9701
9772
|
if (name === "chat") {
|
|
9702
9773
|
return chatProxy;
|
|
9703
9774
|
}
|
|
9775
|
+
if (name === "embeddings") {
|
|
9776
|
+
return embeddingProxy;
|
|
9777
|
+
}
|
|
9704
9778
|
if (name === "beta" && betaProxy) {
|
|
9705
9779
|
return betaProxy;
|
|
9706
9780
|
}
|
|
@@ -9710,10 +9784,13 @@ function wrapOpenAIv4(openai) {
|
|
|
9710
9784
|
return proxy;
|
|
9711
9785
|
}
|
|
9712
9786
|
function wrapBetaChatCompletion(completion) {
|
|
9713
|
-
return
|
|
9787
|
+
return (params) => {
|
|
9714
9788
|
const { messages, ...rest } = params;
|
|
9715
9789
|
const span = startSpan({
|
|
9716
9790
|
name: "OpenAI Chat Completion",
|
|
9791
|
+
spanAttributes: {
|
|
9792
|
+
type: SpanTypeAttribute.LLM
|
|
9793
|
+
},
|
|
9717
9794
|
event: {
|
|
9718
9795
|
input: messages,
|
|
9719
9796
|
metadata: {
|
|
@@ -9722,7 +9799,7 @@ function wrapBetaChatCompletion(completion) {
|
|
|
9722
9799
|
}
|
|
9723
9800
|
});
|
|
9724
9801
|
const startTime = getCurrentUnixTimestamp();
|
|
9725
|
-
const ret =
|
|
9802
|
+
const ret = completion(params);
|
|
9726
9803
|
let first2 = true;
|
|
9727
9804
|
ret.on("chunk", (_chunk) => {
|
|
9728
9805
|
if (first2) {
|
|
@@ -9747,10 +9824,13 @@ function wrapBetaChatCompletion(completion) {
|
|
|
9747
9824
|
};
|
|
9748
9825
|
}
|
|
9749
9826
|
function wrapChatCompletion(completion) {
|
|
9750
|
-
return async (params) => {
|
|
9827
|
+
return async (params, options) => {
|
|
9751
9828
|
const { messages, ...rest } = params;
|
|
9752
9829
|
const span = startSpan({
|
|
9753
9830
|
name: "OpenAI Chat Completion",
|
|
9831
|
+
spanAttributes: {
|
|
9832
|
+
type: SpanTypeAttribute.LLM
|
|
9833
|
+
},
|
|
9754
9834
|
event: {
|
|
9755
9835
|
input: messages,
|
|
9756
9836
|
metadata: {
|
|
@@ -9760,11 +9840,14 @@ function wrapChatCompletion(completion) {
|
|
|
9760
9840
|
});
|
|
9761
9841
|
if (params.stream) {
|
|
9762
9842
|
const startTime = getCurrentUnixTimestamp();
|
|
9763
|
-
const ret = await completion(params);
|
|
9843
|
+
const ret = await completion(params, options);
|
|
9764
9844
|
return new WrapperStream(span, startTime, ret);
|
|
9765
9845
|
} else {
|
|
9766
9846
|
try {
|
|
9767
|
-
const ret = await completion(
|
|
9847
|
+
const ret = await completion(
|
|
9848
|
+
params,
|
|
9849
|
+
options
|
|
9850
|
+
);
|
|
9768
9851
|
const { messages: messages2, ...rest2 } = params;
|
|
9769
9852
|
span.log({
|
|
9770
9853
|
input: messages2,
|
|
@@ -9785,6 +9868,37 @@ function wrapChatCompletion(completion) {
|
|
|
9785
9868
|
}
|
|
9786
9869
|
};
|
|
9787
9870
|
}
|
|
9871
|
+
function wrapEmbeddings(create) {
|
|
9872
|
+
return async (params, options) => {
|
|
9873
|
+
const { input, ...rest } = params;
|
|
9874
|
+
return traced(
|
|
9875
|
+
async (span) => {
|
|
9876
|
+
const result = await create(params, options);
|
|
9877
|
+
const output = result.data[0];
|
|
9878
|
+
span.log({
|
|
9879
|
+
output,
|
|
9880
|
+
metrics: {
|
|
9881
|
+
tokens: result.usage?.total_tokens,
|
|
9882
|
+
prompt_tokens: result.usage?.prompt_tokens
|
|
9883
|
+
}
|
|
9884
|
+
});
|
|
9885
|
+
return result;
|
|
9886
|
+
},
|
|
9887
|
+
{
|
|
9888
|
+
name: "OpenAI Embedding",
|
|
9889
|
+
spanAttributes: {
|
|
9890
|
+
type: SpanTypeAttribute.LLM
|
|
9891
|
+
},
|
|
9892
|
+
event: {
|
|
9893
|
+
input,
|
|
9894
|
+
metadata: {
|
|
9895
|
+
...rest
|
|
9896
|
+
}
|
|
9897
|
+
}
|
|
9898
|
+
}
|
|
9899
|
+
);
|
|
9900
|
+
};
|
|
9901
|
+
}
|
|
9788
9902
|
var WrapperStream = class {
|
|
9789
9903
|
constructor(span, startTime, iter) {
|
|
9790
9904
|
this.span = span;
|
package/dist/isomorph.d.ts
CHANGED
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
commit?: string;
|
|
3
|
-
branch?: string;
|
|
4
|
-
tag?: string;
|
|
5
|
-
dirty: boolean;
|
|
6
|
-
author_name?: string;
|
|
7
|
-
author_email?: string;
|
|
8
|
-
commit_message?: string;
|
|
9
|
-
commit_time?: string;
|
|
10
|
-
}
|
|
1
|
+
import { GitMetadataSettings, RepoStatus } from "@braintrust/core";
|
|
11
2
|
export interface CallerLocation {
|
|
12
3
|
caller_functionname: string;
|
|
13
4
|
caller_filename: string;
|
|
@@ -19,7 +10,7 @@ export interface IsoAsyncLocalStorage<T> {
|
|
|
19
10
|
getStore(): T | undefined;
|
|
20
11
|
}
|
|
21
12
|
export interface Common {
|
|
22
|
-
getRepoStatus: () => Promise<RepoStatus | undefined>;
|
|
13
|
+
getRepoStatus: (settings?: GitMetadataSettings) => Promise<RepoStatus | undefined>;
|
|
23
14
|
getPastNAncestors: () => Promise<string[]>;
|
|
24
15
|
getEnv: (name: string) => string | undefined;
|
|
25
16
|
getCallerLocation: () => CallerLocation | undefined;
|
package/dist/logger.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference lib="dom" />
|
|
2
|
-
import { IS_MERGE_FIELD, PARENT_ID_FIELD, Source, AUDIT_SOURCE_FIELD, AUDIT_METADATA_FIELD } from "@braintrust/core";
|
|
2
|
+
import { IS_MERGE_FIELD, PARENT_ID_FIELD, Source, AUDIT_SOURCE_FIELD, AUDIT_METADATA_FIELD, GitMetadataSettings } from "@braintrust/core";
|
|
3
3
|
import { IsoAsyncLocalStorage } from "./isomorph";
|
|
4
4
|
export type Metadata = Record<string, unknown>;
|
|
5
5
|
export type SetCurrentArg = {
|
|
@@ -117,6 +117,7 @@ declare class BraintrustState {
|
|
|
117
117
|
orgName: string | null;
|
|
118
118
|
logUrl: string | null;
|
|
119
119
|
loggedIn: boolean;
|
|
120
|
+
gitMetadataSettings?: GitMetadataSettings;
|
|
120
121
|
private _apiConn;
|
|
121
122
|
private _logConn;
|
|
122
123
|
constructor();
|
|
@@ -181,7 +182,7 @@ export declare class Logger<IsAsyncFlush extends boolean> {
|
|
|
181
182
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
182
183
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare logs.
|
|
183
184
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
184
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
185
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
185
186
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
186
187
|
* :returns: The `id` of the logged event.
|
|
187
188
|
*/
|
|
@@ -259,6 +260,7 @@ type ExperimentEvent = Partial<InputField> & Partial<OtherExperimentLogFields> &
|
|
|
259
260
|
created: string;
|
|
260
261
|
span_parents: string[];
|
|
261
262
|
span_attributes: Record<string, unknown>;
|
|
263
|
+
context: Record<string, unknown>;
|
|
262
264
|
[PARENT_ID_FIELD]: string;
|
|
263
265
|
[AUDIT_SOURCE_FIELD]: Source;
|
|
264
266
|
[AUDIT_METADATA_FIELD]?: Record<string, unknown>;
|
|
@@ -315,6 +317,7 @@ export type InitOptions = {
|
|
|
315
317
|
apiKey?: string;
|
|
316
318
|
orgName?: string;
|
|
317
319
|
metadata?: Metadata;
|
|
320
|
+
gitMetadataSettings?: GitMetadataSettings;
|
|
318
321
|
setCurrent?: boolean;
|
|
319
322
|
};
|
|
320
323
|
/**
|
|
@@ -338,6 +341,7 @@ export type InitOptions = {
|
|
|
338
341
|
* about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the
|
|
339
342
|
* `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any
|
|
340
343
|
* JSON-serializable type, but its keys must be strings.
|
|
344
|
+
* @param options.gitMetadataSettings (Optional) Settings for collecting git metadata. By default, will collect all git metadata fields allowed in org-level settings.
|
|
341
345
|
* @param setCurrent If true (the default), set the global current-experiment to the newly-created one.
|
|
342
346
|
* @returns The newly created Experiment.
|
|
343
347
|
*/
|
|
@@ -505,7 +509,7 @@ export declare class Experiment {
|
|
|
505
509
|
* @param event.expected: The ground truth value (an arbitrary, JSON serializable object) that you'd compare to `output` to determine if your `output` value is correct or not. Braintrust currently does not compare `output` to `expected` for you, since there are so many different ways to do that correctly. Instead, these values are just used to help you navigate your experiments while digging into analyses. However, we may later use these values to re-score outputs or fine-tune your models.
|
|
506
510
|
* @param event.scores: A dictionary of numeric values (between 0 and 1) to log. The scores should give you a variety of signals that help you determine how accurate the outputs are compared to what you expect and diagnose failures. For example, a summarization app might have one score that tells you how accurate the summary is, and another that measures the word similarity between the generated and grouth truth summary. The word similarity score could help you determine whether the summarization was covering similar concepts or not. You can use these scores to help you sort, filter, and compare experiments.
|
|
507
511
|
* @param event.metadata: (Optional) a dictionary with additional data about the test example, model outputs, or just about anything else that's relevant, that you can use to help find and analyze examples later. For example, you could log the `prompt`, example's `id`, or anything else that would be useful to slice/dice later. The values in `metadata` can be any JSON-serializable type, but its keys must be strings.
|
|
508
|
-
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end"
|
|
512
|
+
* @param event.metrics: (Optional) a dictionary of metrics to log. The following keys are populated automatically: "start", "end".
|
|
509
513
|
* @param event.id: (Optional) a unique identifier for the event. If you don't provide one, BrainTrust will generate one for you.
|
|
510
514
|
* @param event.dataset_record_id: (Optional) the id of the dataset record that this event is associated with. This field is required if and only if the experiment is associated with a dataset.
|
|
511
515
|
* @param event.inputs: (Deprecated) the same as `input` (will be removed in a future version).
|
package/dist/oai.d.ts
CHANGED
|
@@ -4,14 +4,19 @@ interface BetaLike {
|
|
|
4
4
|
stream: any;
|
|
5
5
|
};
|
|
6
6
|
};
|
|
7
|
+
embeddings: any;
|
|
7
8
|
}
|
|
8
9
|
interface ChatLike {
|
|
9
10
|
completions: any;
|
|
10
11
|
}
|
|
11
12
|
interface OpenAILike {
|
|
12
13
|
chat: ChatLike;
|
|
14
|
+
embeddings: any;
|
|
13
15
|
beta?: BetaLike;
|
|
14
16
|
}
|
|
17
|
+
declare global {
|
|
18
|
+
var __inherited_braintrust_wrap_openai: ((openai: any) => any) | undefined;
|
|
19
|
+
}
|
|
15
20
|
/**
|
|
16
21
|
* Wrap an `OpenAI` object (created with `new OpenAI(...)`) to add tracing. If Braintrust is
|
|
17
22
|
* not configured, this is a no-op
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/index.d.ts","../../core/js/dist/index.d.ts","../src/util.ts","../src/logger.ts","../src/browser-config.ts","../src/oai.ts","../src/browser.ts","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"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":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"e3e7b677e8ad626f8a801ed3f7b49ca3bfc17e869d265a489518b5c5558fd0fa","signature":"f31a68039c0234a972bc0bc4d9388907ece056e3f76c6b9e880313639baa40d7"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","2e1405685b76c389e7297f5281130f8e771029eb7adb49c480d052ea0554191d",{"version":"f8e993de64a77bdab94b26438693969a8653207470d433373dfd42a2aedc7455","signature":"d344485f78c9bf45b4a7908775868cd4f5efea36ccd53f8fc7fdb1c718e856dc"},{"version":"7e7f1875d2ebd87bd157cf1f0b7d6b58ac52447a247b4f0f2bee373a5708f00e","signature":"03d0ea586a520186b9d859b19ca641024e4961a4fd6dac0b56d298abc76eb268","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"2b5c5a505772679f386c60e0cbcf7d8148e446692dc4d06bae396d3b103ac8fc","signature":"9e9cf54696acd8abf09b7a2604ae86942c41009207791012283745cd7517fe57"},{"version":"ddf00d2734715528ba52cfaebaff7d70bbc5663688139efd7ffe0d0476688ff5","signature":"82f11771b6ef70327d9a7a1d43aa3e13dfa2825671bb591c7edeb954335b05e1"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","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":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","8b34a861518e75b68211e09ba8290cb5dc6705ef705e3cf912dac10bf1c851d2","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","70b3cf5c5122849e757a21b3a4ec8cac43d06a133f161acf52189c38179badde",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",{"version":"2b9674d304cdad00a33c24c4bfb1e6ab411092f5b85f2a4bcd16c1f09846d43e","signature":"a93e59938be06ae31cc180d6f5a51d282f8e23924dfbd9dfda2699c65b37f496","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","e624281c478c592ab5afac243a0f4303c2b3f56324a96df2ece5a53a279bc967","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","8d9ff4f53cb1fca7ec778e8df86076b3b99c4f21fd3c15ef3de42c7d6b4a0c5c","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"15367d56f678f79afa62839785e518c2341b80e194339fbfe5823cd1febbbacc","signature":"900f9b2002fba2fd7c27f3ba480412195cd0bb0f9ece2a4fe5c599d1a9200372"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"1d3627e56e2fa30b36746ca013d79bf889027a466c3ca6fc5a99e54840946244","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[46,[49,54],166,168,169,171,[197,201]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[147,148],[148,149,150,151],[142,148,150],[147,149],[106,142],[106,142,143],[143,144,145,146],[143,145],[144],[123,142,152,153,154,157],[153,154,156],[105,142,152,153,154,155],[154],[152,153],[142,152],[105,142],[56],[92],[93,98,126],[94,105,106,113,123,134],[94,95,105,113],[96,135],[97,98,106,114],[98,123,131],[99,101,105,113],[100],[101,102],[105],[103,105],[92,105],[105,106,107,123,134],[105,106,107,120,123,126],[90,93,139],[101,105,108,113,123,134],[105,106,108,109,113,123,131,134],[108,110,123,131,134],[56,57,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141],[105,111],[112,134,139],[101,105,113,123],[114],[115],[92,116],[117,133,139],[118],[119],[105,120,121],[120,122,135,137],[93,105,123,124,125,126],[93,123,125],[123,124],[126],[127],[92,123],[105,129,130],[129,130],[98,113,123,131],[132],[113,133],[93,108,119,134],[98,135],[123,136],[112,137],[138],[93,98,105,107,116,123,134,137,139],[123,140],[162],[159,160,161],[174,176],[176],[174],[172,176,196],[172,176],[196],[176,196],[94,142,173,175],[142,172,176],[174,190,191,192,193],[178,189,194,195],[177],[178,189,194],[176,177,179,180,181,182,183,184,185,186,187,188],[67,71,134],[67,123,134],[62],[64,67,131,134],[113,131],[142],[62,142],[64,67,113,134],[59,60,63,66,93,105,123,134],[59,65],[63,67,93,126,134,142],[93,142],[83,93,142],[61,62,142],[67],[61,62,63,64,65,66,67,68,69,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89],[67,74,75],[65,67,75,76],[66],[59,62,67],[67,71,75,76],[71],[65,67,70,134],[59,64,65,67,71,74],[93,123],[62,67,83,93,139,142],[46,50,92],[50,51,52],[114,115],[47,50,55,106,114,115,135,158,162,163,164,166,169,171,199],[48,50,164,166,170],[50,52,171,199],[115,168],[167],[46,47,48,49],[46,50,92,197,198],[49,50],[165],[46,115],[50,52],[48,50,166,170],[50,52,171],[46,48],[46]],"referencedMap":[[149,1],[152,2],[151,3],[150,4],[148,5],[144,6],[147,7],[146,8],[145,9],[143,5],[158,10],[157,11],[156,12],[155,13],[154,14],[153,15],[165,16],[167,5],[56,17],[57,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,27],[104,28],[103,29],[105,30],[106,31],[107,32],[91,33],[108,34],[109,35],[110,36],[142,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,47],[122,48],[123,49],[125,50],[124,51],[126,52],[127,53],[128,54],[129,55],[130,56],[131,57],[132,58],[133,59],[134,60],[135,61],[136,62],[137,63],[138,64],[139,65],[140,66],[159,67],[160,67],[162,68],[161,67],[190,69],[174,70],[191,69],[192,71],[193,71],[181,70],[182,70],[183,72],[184,73],[185,74],[186,74],[177,75],[187,70],[172,70],[188,74],[175,71],[176,76],[173,77],[194,78],[196,79],[178,80],[195,81],[189,82],[74,83],[81,84],[73,83],[88,85],[65,86],[64,87],[87,88],[82,89],[85,90],[67,91],[66,92],[62,93],[61,94],[84,95],[63,96],[68,97],[72,97],[90,98],[89,97],[76,99],[77,100],[79,101],[75,102],[78,103],[83,88],[70,104],[71,105],[80,106],[60,107],[86,108],[51,109],[53,110],[54,111],[200,112],[171,113],[197,74],[201,114],[169,115],[168,116],[50,117],[199,118],[52,119],[166,120],[198,121]],"exportedModulesMap":[[149,1],[152,2],[151,3],[150,4],[148,5],[144,6],[147,7],[146,8],[145,9],[143,5],[158,10],[157,11],[156,12],[155,13],[154,14],[153,15],[165,16],[167,5],[56,17],[57,17],[92,18],[93,19],[94,20],[95,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,27],[104,28],[103,29],[105,30],[106,31],[107,32],[91,33],[108,34],[109,35],[110,36],[142,37],[111,38],[112,39],[113,40],[114,41],[115,42],[116,43],[117,44],[118,45],[119,46],[120,47],[121,47],[122,48],[123,49],[125,50],[124,51],[126,52],[127,53],[128,54],[129,55],[130,56],[131,57],[132,58],[133,59],[134,60],[135,61],[136,62],[137,63],[138,64],[139,65],[140,66],[159,67],[160,67],[162,68],[161,67],[190,69],[174,70],[191,69],[192,71],[193,71],[181,70],[182,70],[183,72],[184,73],[185,74],[186,74],[177,75],[187,70],[172,70],[188,74],[175,71],[176,76],[173,77],[194,78],[196,79],[178,80],[195,81],[189,82],[74,83],[81,84],[73,83],[88,85],[65,86],[64,87],[87,88],[82,89],[85,90],[67,91],[66,92],[62,93],[61,94],[84,95],[63,96],[68,97],[72,97],[90,98],[89,97],[76,99],[77,100],[79,101],[75,102],[78,103],[83,88],[70,104],[71,105],[80,106],[60,107],[86,108],[51,18],[53,122],[171,123],[197,74],[201,124],[50,125],[198,126]],"semanticDiagnosticsPerFile":[149,152,151,150,148,144,147,146,145,143,158,157,156,155,154,153,163,165,167,56,57,92,93,94,95,96,97,98,99,100,101,102,104,103,105,106,107,91,141,108,109,110,142,111,112,113,114,115,116,117,118,119,120,121,122,123,125,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,164,47,58,170,55,159,160,162,161,180,190,174,191,192,193,179,181,182,183,184,185,186,177,187,172,188,175,176,173,194,196,178,195,189,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,74,81,73,88,65,64,87,82,85,67,66,62,61,84,63,68,69,72,59,90,89,76,77,79,75,78,83,70,71,80,60,86,48,51,53,54,200,171,197,201,46,169,168,50,199,52,166,198,49]},"version":"5.3.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../core/js/dist/index.d.ts","../src/isomorph.ts","../../../node_modules/.pnpm/@types+uuid@9.0.7/node_modules/@types/uuid/index.d.ts","../src/util.ts","../src/logger.ts","../src/browser-config.ts","../src/oai.ts","../src/browser.ts","../src/cache.ts","../../../node_modules/.pnpm/esbuild@0.18.20/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@20.10.5/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/ast.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/.pnpm/@types+argparse@2.0.14/node_modules/@types/argparse/index.d.ts","../../../node_modules/.pnpm/@types+pluralize@0.0.30/node_modules/@types/pluralize/index.d.ts","../../../node_modules/.pnpm/@types+cli-progress@3.11.5/node_modules/@types/cli-progress/index.d.ts","../src/progress.ts","../../../node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs/index.d.ts","../src/jest/tryrealpath.ts","../src/jest/nodemodulespaths.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../src/framework.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/task.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/tasks.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/handlers.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/types/index.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/log.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/response.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/responses/getremotesummary.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/args/pathspec.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/apply-patch.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/check-is-repo.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clean.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/clone.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/config.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/grep.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/reset.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/tasks/version.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/types.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-plugin-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/git-response-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/src/lib/errors/task-configuration-error.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/errors.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/simple-git.d.ts","../../../node_modules/.pnpm/simple-git@3.21.0/node_modules/simple-git/dist/typings/index.d.ts","../src/gitutil.ts","../src/stackutil.ts","../src/node.ts","../src/cli.ts","../src/index.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"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":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"306e104c0f30e1ec7cf07a990cce9fb3dddd1b81060cecf9b3a78e0e0afbeaad",{"version":"305e8eac7b68332f9b61fcd021c2e6c183e51a5c096dc8a7e9f83ad63e7cc0c8","signature":"89e8564f2492d65f315f612d88f9a8e0dad644bd3325f2f660df27258086e1a0"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"f8e993de64a77bdab94b26438693969a8653207470d433373dfd42a2aedc7455","signature":"d344485f78c9bf45b4a7908775868cd4f5efea36ccd53f8fc7fdb1c718e856dc"},{"version":"1a5473acde076c352b6a9f6b97613539d8b31766fd213962d7aa33d870f2782e","signature":"3cd8d1587d494978f88f326d12728e6c95aaf44a23b1a270feefb8c901bb8d78","affectsGlobalScope":true},{"version":"a2dc8e3d209bf33127af2d01bafe9407dc06ab605fe4e4bdc297d7d0fdb9add5","signature":"443148657b934a070c73ec27dfbbc63d3fcfdb703009ed36d997337abc2290e4","affectsGlobalScope":true},{"version":"5db8cbebf6695d08185c558f026bf079af2651e26dcf3c2fad9523828ad6d579","signature":"14cef2b567a470ca5665d4567381a80a292a8282610b9cc8fa22bde4aea4eacf","affectsGlobalScope":true},{"version":"ddf00d2734715528ba52cfaebaff7d70bbc5663688139efd7ffe0d0476688ff5","signature":"82f11771b6ef70327d9a7a1d43aa3e13dfa2825671bb591c7edeb954335b05e1"},{"version":"43361e6b831db1ef828f60d9219c09bfc43acb1b75ce86ead48f557a0935c0d2","signature":"b4324240466cc26262b0a4876ba6e405a8ad714cd15d4e309b765a3b41d90fb9"},"850040826cfa77593d44f44487133af21917f4f21507258bd4269501b80d32f0","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","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":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","c56ef8201a294d65d1132160ebc76ed0c0a98dcf983d20775c8c8c0912210572","de0199a112f75809a7f80ec071495159dcf3e434bc021347e0175627398264c3","1a2bed55cfa62b4649485df27c0e560b04d4da4911e3a9f0475468721495563f","854045924626ba585f454b53531c42aed4365f02301aa8eca596423f4675b71f","8b34a861518e75b68211e09ba8290cb5dc6705ef705e3cf912dac10bf1c851d2","5adf3c3c7204b3614dbc585681a33ef598c68df387298859f9a2521cfb449437","70b3cf5c5122849e757a21b3a4ec8cac43d06a133f161acf52189c38179badde",{"version":"d096d550acd00bd6d66825d9a4e572121bd854b28edc5ae2c1d4e80d51a147a9","signature":"46966a0da8f681c479166dd3060b63d3cafc3d5e9e218157490f3697122a3e57"},"afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5",{"version":"c0b4084226d4ad0a3c78580c50f85985f4a3e808eb59a15c9fb389c8349f9056","signature":"f155bcfea5ae8b647b26fef54caf159a514950ac9cb3c192dcfab787d4588eec"},{"version":"0f3a9fccbf341d90a4be583161e6415c8c0543f5dd180419ea13e3db991ccca0","signature":"d4cb0878684926011f20ef763f982c78e1b0b699c0faefee31d2a7bdcf44a7bb"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2",{"version":"e3c68ef250a60467c07c91eb430ef0f398dd626dc308c0e638b88bb5d7852b85","signature":"a93e59938be06ae31cc180d6f5a51d282f8e23924dfbd9dfda2699c65b37f496","affectsGlobalScope":true},"82c661f1f20d29212d2e0408bee2e0f54bf8930cdcdd88f23ef8e03e4618afb4","d53d8a71b9525be3fb65c331f20db99b826edfa922703578af284736dc780db5","6256cf36c8ae7e82bff606595af8fe08a06f8478140fcf304ee2f10c7716ddc8","2ba0457b958954b9b2041077df992fad015e85c615dc1ccebeddb561d4ab89cf","81c4fd49117bc25b8aac796a345db4315cc31861f61772da6bd405989ede0f79","1f8d4c8257ba50385865ce887940c8fdc745bcf3cea2dc09173bc8d3320b6efe","e624281c478c592ab5afac243a0f4303c2b3f56324a96df2ece5a53a279bc967","7c774169686976056434799723bd7a48348df9d2204b928a0b77920505585214","5e95379e81e2d373e5235cedc4579938e39db274a32cfa32f8906e7ff6698763","d3c8a891b0554f4319651b5c89c2d91a442a792bf84afcbc399be033b96b4abd","8758b438b12ea50fb8b678d29ab0ef42d77abfb801cec481596ce6002b537a6f","88074e936d33e224b83f81eebbaf835467e1c0a6ba1239b950e6476dd7f73356","c895675912a8b2d0dcb13d24433757d233de16a3bb5c60f7d903099d96d61ea8","f73cf81342d2a25b65179c262ca7c38df023969129094607d0eb52510a56f10f","e7d7e67bd66b30f2216e4678b97bb09629a2b31766a79119acaa30e3005ef5fb","4a7b9005bef99460ba60da67219f0aff852cfd44038f17626bf59a6b5c6960b5","e137f087bda0256410b28743ef9a1bf57a4cafd43ffa6b62d5c17a8f5a08b3b5","fa8d9c5ea6ad2a5d3d6ee7703cfe1ddd962f1e4da08a370c6db642b1a1a091b8","af504042a6db047c40cc0aeb14550bbc954f194f2b8c5ad8944f2da502f45bf5","5b25b6ab5ad6c17f90b592162b2e9978ad8d81edf24cd3957306eb6e5edb89a9","24693bd77ac3be0b16e564d0ab498a397feb758ce7f4ed9f13478d566e3aafde","208dad548b895c7d02465de6ba79064b7c67bc4d94e5227b09f21d58790e634c","048c0ced65fa41fbf4bcc3d5e8e5b6f6c7f27335ceb54d401be654e821adbc08","8d9ff4f53cb1fca7ec778e8df86076b3b99c4f21fd3c15ef3de42c7d6b4a0c5c","9a57d654b0a0e4bf56a8eb0aa3ede1c7d349cec6220e36b5288c26626c8688ed",{"version":"ba9362b9171786cfd3021fb1b8ed58e44418d03882060408d53bdbb8e09471dc","signature":"83688e624421f7b5389f56d71542f133bd835c6a0c728ef7dd399922a2231264"},{"version":"282c7c74d33d5ec6a9067728647227358018bf878a6c381973efd5be87f0d2a8","signature":"eef6c9e9e2ced98a276734cb82f81b12d154026659e84128ad42a3a69caced38"},{"version":"c1887ec121feae4f6a72ec295ad8cc2acd12e37b278672d1c1aa53d6ebba076c","signature":"1518a19a9cb02ce4439e1bd5d07e5dd4f496d4598142ff82264b40785ba28789"},{"version":"1d3627e56e2fa30b36746ca013d79bf889027a466c3ca6fc5a99e54840946244","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"9a96f063a32a1bc5a9c126092e97381aa696b6215a2634c386695633e9b3d759","signature":"83719c2149a90c33ae5b40a9e69186febff4f4d14485752e576dab3486380185"}],"root":[47,[49,54],165,167,168,170,[196,200]],"options":{"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[146,147],[147,148,149,150],[141,147,149],[146,148],[105,141],[105,141,142],[142,143,144,145],[142,144],[143],[122,141,151,152,153,156],[152,153,155],[104,141,151,152,153,154],[153],[151,152],[141,151],[104,141],[56],[91],[92,97,125],[93,104,105,112,122,133],[93,94,104,112],[95,134],[96,97,105,113],[97,122,130],[98,100,104,112],[99],[100,101],[104],[102,104],[91,104],[104,105,106,122,133],[104,105,106,119,122,125],[89,92,138],[100,104,107,112,122,133],[104,105,107,108,112,122,130,133],[107,109,122,130,133],[56,57,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[104,110],[111,133,138],[100,104,112,122],[113],[114],[91,115],[116,132,138],[117],[118],[104,119,120],[119,121,134,136],[92,104,122,123,124,125],[92,122,124],[122,123],[125],[126],[91,122],[104,128,129],[128,129],[97,112,122,130],[131],[112,132],[92,107,118,133],[97,134],[122,135],[111,136],[137],[92,97,104,106,115,122,133,136,138],[122,139],[161],[158,159,160],[173,175],[175],[173],[171,175,195],[171,175],[195],[175,195],[93,141,172,174],[141,171,175],[173,189,190,191,192],[177,188,193,194],[176],[177,188,193],[175,176,178,179,180,181,182,183,184,185,186,187],[66,70,133],[66,122,133],[61],[63,66,130,133],[112,130],[141],[61,141],[63,66,112,133],[58,59,62,65,92,104,122,133],[58,64],[62,66,92,125,133,141],[92,141],[82,92,141],[60,61,141],[66],[60,61,62,63,64,65,66,67,68,70,71,72,73,74,75,76,77,78,79,80,81,83,84,85,86,87,88],[66,73,74],[64,66,74,75],[65],[58,61,66],[66,70,74,75],[70],[64,66,69,133],[58,63,64,66,70,73],[92,122],[61,66,82,92,138,141],[47,50,91],[50,51,52],[113,114],[48,50,55,105,113,114,134,157,161,162,163,165,168,170,198],[46,50,163,165,169],[46,195],[50,52,170,198],[46],[114,167],[166],[46,47,48,49],[47,50,91,196,197],[46,49,50,109],[164],[47,114],[50,52],[46,50,165,169],[50,52,170],[46,47],[47]],"referencedMap":[[148,1],[151,2],[150,3],[149,4],[147,5],[143,6],[146,7],[145,8],[144,9],[142,5],[157,10],[156,11],[155,12],[154,13],[153,14],[152,15],[164,16],[166,5],[56,17],[57,17],[91,18],[92,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,27],[103,28],[102,29],[104,30],[105,31],[106,32],[90,33],[107,34],[108,35],[109,36],[141,37],[110,38],[111,39],[112,40],[113,41],[114,42],[115,43],[116,44],[117,45],[118,46],[119,47],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[139,66],[158,67],[159,67],[161,68],[160,67],[189,69],[173,70],[190,69],[191,71],[192,71],[180,70],[181,70],[182,72],[183,73],[184,74],[185,74],[176,75],[186,70],[171,70],[187,74],[174,71],[175,76],[172,77],[193,78],[195,79],[177,80],[194,81],[188,82],[73,83],[80,84],[72,83],[87,85],[64,86],[63,87],[86,88],[81,89],[84,90],[66,91],[65,92],[61,93],[60,94],[83,95],[62,96],[67,97],[71,97],[89,98],[88,97],[75,99],[76,100],[78,101],[74,102],[77,103],[82,88],[69,104],[70,105],[79,106],[59,107],[85,108],[51,109],[53,110],[54,111],[199,112],[170,113],[196,114],[200,115],[47,116],[168,117],[167,118],[50,119],[198,120],[52,121],[165,122],[197,123]],"exportedModulesMap":[[148,1],[151,2],[150,3],[149,4],[147,5],[143,6],[146,7],[145,8],[144,9],[142,5],[157,10],[156,11],[155,12],[154,13],[153,14],[152,15],[164,16],[166,5],[56,17],[57,17],[91,18],[92,19],[93,20],[94,21],[95,22],[96,23],[97,24],[98,25],[99,26],[100,27],[101,27],[103,28],[102,29],[104,30],[105,31],[106,32],[90,33],[107,34],[108,35],[109,36],[141,37],[110,38],[111,39],[112,40],[113,41],[114,42],[115,43],[116,44],[117,45],[118,46],[119,47],[120,47],[121,48],[122,49],[124,50],[123,51],[125,52],[126,53],[127,54],[128,55],[129,56],[130,57],[131,58],[132,59],[133,60],[134,61],[135,62],[136,63],[137,64],[138,65],[139,66],[158,67],[159,67],[161,68],[160,67],[189,69],[173,70],[190,69],[191,71],[192,71],[180,70],[181,70],[182,72],[183,73],[184,74],[185,74],[176,75],[186,70],[171,70],[187,74],[174,71],[175,76],[172,77],[193,78],[195,79],[177,80],[194,81],[188,82],[73,83],[80,84],[72,83],[87,85],[64,86],[63,87],[86,88],[81,89],[84,90],[66,91],[65,92],[61,93],[60,94],[83,95],[62,96],[67,97],[71,97],[89,98],[88,97],[75,99],[76,100],[78,101],[74,102],[77,103],[82,88],[69,104],[70,105],[79,106],[59,107],[85,108],[51,18],[53,124],[170,125],[196,114],[200,126],[47,116],[50,127],[197,128]],"semanticDiagnosticsPerFile":[148,151,150,149,147,143,146,145,144,142,157,156,155,154,153,152,162,164,166,56,57,91,92,93,94,95,96,97,98,99,100,101,103,102,104,105,106,90,140,107,108,109,141,110,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,163,48,169,55,158,159,161,160,179,189,173,190,191,192,178,180,181,182,183,184,185,176,186,171,187,174,175,172,193,195,177,194,188,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,73,80,72,87,64,63,86,81,84,66,65,61,60,83,62,67,68,71,58,89,88,75,76,78,74,77,82,69,70,79,59,85,46,51,53,54,199,170,196,200,47,168,167,50,198,52,165,197,49]},"version":"5.3.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braintrust",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.92",
|
|
4
4
|
"description": "SDK for integrating Braintrust",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"browser": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@braintrust/core": "^0.0.
|
|
46
|
+
"@braintrust/core": "^0.0.13",
|
|
47
47
|
"argparse": "^2.0.1",
|
|
48
48
|
"chalk": "^4.1.2",
|
|
49
49
|
"cli-progress": "^3.12.0",
|