File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
frontend/internal-packages/agent/src/qa-agent/distributeRequirements Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export type { RequirementData } from './types'
11
11
export function continueToRequirements ( state : QaAgentState ) {
12
12
const targetRequirements = getUnprocessedRequirements ( state )
13
13
14
- // DEBUG: Limit to first 10 requirements to investigate LangSmith tracing issue
14
+ // DEBUG: Limit to first 40 requirements to investigate LangSmith tracing issue
15
15
// TODO: Remove this limitation after the issue is resolved
16
- const limitedRequirements = targetRequirements . slice ( 0 , 10 )
16
+ const limitedRequirements = targetRequirements . slice ( 0 , 40 )
17
17
18
18
// Use Send API to distribute each requirement for parallel processing
19
19
// Each requirement will be processed by testcaseGeneration with isolated state
You can’t perform that action at this time.
0 commit comments