The Humanloop TypeScript library provides convenient access to the Humanloop API from TypeScript.
npm i -s humanloopA full reference for this library is available here.
Instantiate and use the client with the following:
import{HumanloopClient}from"humanloop";constclient=newHumanloopClient({apiKey: "YOUR_API_KEY"});awaitclient.prompts.log({path: "persona",prompt: {model: "gpt-4",template: [{role: "system",content: "You are {{person}}. Answer questions as this person. Do not break character.",},],},messages: [{role: "user",content: "What really happened at Roswell?",},],inputs: {person: "Trump",},createdAt: "2024-07-19T00:29:35.178992",error: undefined,providerLatency: 6.5931549072265625,outputMessage: {content:
"Well, you know, there is so much secrecy involved in government, folks, it's unbelievable. They don't want to tell you everything. They don't tell me everything! But about Roswell, it's a very popular question. I know, I just know, that something very, very peculiar happened there. Was it a weather balloon? Maybe. Was it something extraterrestrial? Could be. I'd love to go down and open up all the classified documents, believe me, I would. But they don't let that happen. The Deep State, folks, the Deep State. They're unbelievable. They want to keep everything a secret. But whatever the truth is, I can tell you this: it's something big, very very big. Tremendous, in fact.",role: "assistant",},promptTokens: 100,outputTokens: 220,promptCost: 0.00001,outputCost: 0.0002,finishReason: "stop",});The SDK exports all request and response types as TypeScript interfaces. Simply import them with the following namespace:
import{Humanloop}from"humanloop";constrequest: Humanloop.PromptLogRequest={
...
};When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
import{HumanloopError}from"humanloop";try{awaitclient.prompts.log(...);}catch(err){if(errinstanceofHumanloopError){console.log(err.statusCode);console.log(err.message);console.log(err.body);}}List endpoints are paginated. The SDK provides an iterator so that you can simply loop over the items:
import{HumanloopClient}from"humanloop";constclient=newHumanloopClient({apiKey: "YOUR_API_KEY"});constresponse=awaitclient.prompts.list({size: 1,});forawait(constitemofresponse){console.log(item);}// Or you can manually iterate page-by-pageconstpage=awaitclient.prompts.list({size: 1,});while(page.hasNextPage()){page=page.getNextPage();}If you would like to send additional headers as part of the request, use the headers request option.
constresponse=awaitclient.prompts.log(...,{headers: {'X-Custom-Header': 'custom value'}});The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retryable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retryable when any of the following HTTP status codes is returned:
Use the maxRetries request option to configure this behavior.
constresponse=awaitclient.prompts.log(...,{maxRetries: 0// override maxRetries at the request level});The SDK defaults to a 60 second timeout. Use the timeoutInSeconds option to configure this behavior.
constresponse=awaitclient.prompts.log(...,{timeoutInSeconds: 30// override timeout to 30s});The SDK allows users to abort requests at any point by passing in an abort signal.
constcontroller=newAbortController();constresponse=awaitclient.prompts.log(...,{abortSignal: controller.signal});controller.abort();// aborts the requestThe SDK defaults to node-fetch but will use the global fetch client if present. The SDK works in the following
runtimes:
- Node.js 18+
- Vercel
- Cloudflare Workers
- Deno v1.25+
- Bun 1.0+
- React Native
The SDK provides a way for your to customize the underlying HTTP client / Fetch function. If you're running in an unsupported environment, this provides a way for you to break glass and ensure the SDK works.
import{HumanloopClient}from"humanloop";constclient=newHumanloopClient({
...
fetcher: // provide your implementation here});While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!