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