import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const summaryResponse = await client.documents.getSummary('document_id');
console.log(summaryResponse.content);
import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const summaryResponse = await client.documents.getSummary('document_id');
console.log(summaryResponse.content);