import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const knowledgeDocument of client.knowledge.collections.documents.list('x')) { console.log(knowledgeDocument.id);}
import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});// Automatically fetches more pages as needed.for await (const knowledgeDocument of client.knowledge.collections.documents.list('x')) { console.log(knowledgeDocument.id);}