import Client from 'agentlin_client';
const client = new Client({
apiKey: process.env['AGENTLIN_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const envInfo of client.env.list()) {
console.log(envInfo.name);
}
import Client from 'agentlin_client';
const client = new Client({
apiKey: process.env['AGENTLIN_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const envInfo of client.env.list()) {
console.log(envInfo.name);
}