import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const evaluations = await client.dataframer.runs.evaluations.list('run_id');
console.log(evaluations);{}Get evaluations for a specific run
import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const evaluations = await client.dataframer.runs.evaluations.list('run_id');
console.log(evaluations);{}