@gentrace/core
Version:
Core Gentrace Node.JS library
9 lines (8 loc) • 490 B
TypeScript
/**
* 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[]>;