v5.0
The Humanloop platform can be accessed through the API or through our Python and TypeScript SDKs.
$npm install humanloop
1import { HumanloopClient } from "humanloop";23const humanloop = new HumanloopClient({ apiKey: "YOUR_API_KEY" });45// Check that the authentication was successful6console.log(await humanloop.prompts.list());