import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const humanLabel = await client.dataframer.runs.humanLabels.create('run_id');
console.log(humanLabel);{}Create a new human label 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 humanLabel = await client.dataframer.runs.humanLabels.create('run_id');
console.log(humanLabel);{}