We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e70656 commit 9dc8655Copy full SHA for 9dc8655
src/api/ai-workflow/ai-workflow.service.ts
@@ -485,6 +485,28 @@ export class AiWorkflowService {
485
},
486
include: {
487
submission: true,
488
+ workflow: {
489
+ include: {
490
+ llm: {
491
492
+ provider: true,
493
+ },
494
495
+ scorecard: {
496
497
+ scorecardGroups: {
498
499
+ sections: {
500
501
+ questions: true,
502
503
504
505
506
507
508
509
510
511
});
512
@@ -547,7 +569,7 @@ export class AiWorkflowService {
547
569
}
548
570
549
571
550
- return runs.map((r) => ({ ...r, submission: undefined, test: true }));
572
+ return runs.map((r) => ({ ...r, submission: undefined }));
551
573
552
574
553
575
async updateWorkflowRun(
0 commit comments