List Pipe Agents

This example demonstrates how to list all the pipe agents.


List Pipe Agents Example

List Pipe Agents Example

import 'dotenv/config';
import {Langbase} from 'langbase';

const langbase = new Langbase({
	apiKey: process.env.LANGBASE_API_KEY!,
});

async function main() {
	const response = await langbase.pipes.list();
	console.log(response);
}

main();