UNPKG

@maximai/maxim-js

Version:

Maxim AI JS SDK. Visit https://getmaxim.ai for more info.

9 lines (8 loc) 457 B
import { type DataStructure } from "../models/dataset"; import type { TestRunBuilder, TestRunConfig } from "../models/testRun"; /** * Creates a new TestRunBuilder with the given configuration. * @param config The configuration for the TestRunBuilder. * @returns A TestRunBuilder with the given configuration. */ export declare const createTestRunBuilder: <T extends DataStructure | undefined = undefined>(config: TestRunConfig<T>) => TestRunBuilder<T>;