import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const response = await client.dataframer.evaluations.chat.getHistory('evaluation_id');
console.log(response);{}Get chat history for an evaluation
import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const response = await client.dataframer.evaluations.chat.getHistory('evaluation_id');
console.log(response);{}