@debugg-ai/debugg-ai-mcp 2.9.1 → 2.9.2
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.
|
@@ -29,7 +29,9 @@ export const createWorkflowsService = (tx) => {
|
|
|
29
29
|
return match;
|
|
30
30
|
},
|
|
31
31
|
async findEvaluationTemplate() {
|
|
32
|
-
|
|
32
|
+
// 'app evaluation workflow' is specific enough to skip 'App Evaluation Brain'
|
|
33
|
+
// (subworkflow, no browser lifecycle) which also contains 'app evaluation'.
|
|
34
|
+
const keyword = process.env.DEBUGGAI_EVAL_TEMPLATE || 'app evaluation workflow';
|
|
33
35
|
return service.findTemplateByName(keyword);
|
|
34
36
|
},
|
|
35
37
|
async executeWorkflow(workflowUuid, contextData, env) {
|