import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: 'My API Key',
});
const evaluations = await client.dataframer.evaluations.list();
console.log(evaluations);{}Get evaluations for a specific run
import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: 'My API Key',
});
const evaluations = await client.dataframer.evaluations.list();
console.log(evaluations);{}API Key authentication. Format: "Bearer YOUR_API_KEY"
The response is of type object.