@tarcisiopgs/lisa 1.19.2 → 1.19.3
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/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7220,7 +7220,11 @@ async function runLoop(config2, opts) {
|
|
|
7220
7220
|
rotateLogFiles(workspace);
|
|
7221
7221
|
if (!opts.dryRun) {
|
|
7222
7222
|
const contextLogFile = join19(workspace, ".lisa", "context-generation.log");
|
|
7223
|
-
|
|
7223
|
+
ensureWorkspaceContext(config2, models, workspace, contextLogFile).catch((err) => {
|
|
7224
|
+
warn(
|
|
7225
|
+
`Background context generation failed: ${err instanceof Error ? err.message : String(err)}`
|
|
7226
|
+
);
|
|
7227
|
+
});
|
|
7224
7228
|
}
|
|
7225
7229
|
log(
|
|
7226
7230
|
`Starting loop (models: ${models.map((m) => m.model ? `${m.provider}/${m.model}` : m.provider).join(" \u2192 ")}, source: ${config2.source}, label: ${formatLabels(config2.source_config)}, workflow: ${config2.workflow}${concurrency > 1 ? `, concurrency: ${concurrency}` : ""})`
|