UNPKG

@gentrace/core

Version:
9 lines (8 loc) 490 B
/** * Retrieves evaluators for a given pipeline from the Gentrace API * @async * @param {string} pipelineIdentifier - The pipeline slug, pipeline ID, or null (for evaluator templates) * @throws {Error} Throws an error if the SDK is not initialized. Call init() first. * @returns {Promise<Array<EvaluatorV2>>} A Promise that resolves with an array of evaluators. */ export declare const getEvaluators: (pipelineIdentifier: string | null) => Promise<import("../models").EvaluatorV2[]>;