File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed
packages/traceloop-sdk/src/lib Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -266,12 +266,6 @@ export class Experiment {
266266 throw new Error ( 'Task function is required and must be a function' ) ;
267267 }
268268
269- const { concurrency = 5 } = options ;
270-
271- if ( concurrency <= 0 || ! Number . isInteger ( concurrency ) ) {
272- throw new Error ( 'Concurrency must be a positive integer' ) ;
273- }
274-
275269 if ( options . evaluators ) {
276270 options . evaluators . forEach ( ( evaluator , index ) => {
277271 if ( typeof evaluator === 'string' ) {
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ export interface ExperimentRunOptions {
2323 aux ?: Record < string , string > ;
2424 stopOnError ?: boolean ;
2525 waitForResults ?: boolean ;
26- concurrency ?: number ;
2726}
2827
2928import type { InputSchemaMapping } from './evaluator.interface' ;
You can’t perform that action at this time.
0 commit comments