Guide: Getting started with Klu Typescript SDK

by Stephen M. Walker II, Co-Founder / CEO

Top tip

The Klu Typescript SDK provides a simple way to leverage powerful AI models like OpenAI GPT-4 in your Typescript applications - just install the SDK, import Klu, initialize with your API key, create an action, and run it with your input text.

Sure, here's a step-by-step guide on how to create your first Klu action using the TypeScript SDK:

Step 1: Install the Klu TypeScript SDK

First, you need to install the Klu TypeScript SDK. You can do this by running the following command in your terminal:

pnpm i @kluai/core

Step 2: Import Klu

Next, you need to import the Klu module in your TypeScript file:

import Klu from '@kluai/core'

Step 3: Initialize Klu

Now, you need to initialize Klu with your API key:

const klu = new Klu('YOUR_API_KEY')

Step 4: Create an Action

To create an action, you need to use the createAction method. This method takes an object as an argument, which should contain the following properties:

PropertyTypeDescription
namestringThe name of the action.
descriptionstringA brief description of the action.
promptstringThe prompt that will be sent to the model.
providerstringThe model provider.
modelstringThe model for the action.

Here's an example of how to create an action:

const action = await klu.createAction({
  name: 'Content Analyzer',
  description: 'Analyzes any given piece of text content.',
  prompt: 'Analyze the following content\nProvide a summary of the main arguments\n======\n{{content}}',
  provider: 'OpenAI',
  model: 'GPT-4'
})

Step 5: Run the Action

Finally, you can run the action using the runAction method. This method takes the action ID and the input as arguments:

const result = await klu.runAction(action.id, { content: 'Your content here' })

The runAction method will return the generated text.

And that's it! You've just created and run your first Klu action using the TypeScript SDK. Remember to replace 'YOUR_API_KEY' and 'Your content here' with your actual API key and the text you want to analyze, respectively.

If you want to learn more about the Klu Typescript SDK, you can check out the developer docs.

More articles

Guide: Getting started with Klu Python SDK

Build your first Klu Action with the Python SDK in 5 Steps

Read more

Just Launched: Our expanded, global OpenAI GPT-4 deployment

Expanding our global deployment of OpenAI GPT-4 across 12 regions, emphasizing redundancy, load scaling, and regional privacy compliance.

Read more

Get notified when we unlock access.

Public access to Klu is coming Fall 2023. Be the first to get access.

Get Notified