0.0.8 • Published 8 months ago

klu-sdk v0.0.8

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

Klu.AI Typescript SDK

Description

SDK for building AI Enabled apps

The Klu.AI Typescript SDK is a library that provides access to the Klu.AI API, allowing users to interact with their workspace, applications, actions, data, models, and data indices.

Requirements

The Klu.AI Typescript SDK can be installed in any JS / TS environment. The only requirements is to have npm.

Installation

To install the Klu.AI Typescript SDK, simply run:

npm install klu-sdk

Getting Started

To use the Klu.AI Typescript SDK, you must first obtain an API key from the Klu.AI website. Once you have your API key, you can create a KluClient object:

import Klu from 'klu';

const client = new Klu('YOUR_API_KEY');

Once you have a KluClient object, you can access the different models available in the Klu API:

import Klu from 'klu';

const client = new Klu('YOUR_API_KEY');
const models = await client.models.get('model_guid');

There is also a separate function to stream action prompt

Each of these objects provides methods for interacting with the corresponding model in the Klu API. For example, to list all applications in your workspace, you can use:

import Klu from 'klu';

const client = new Klu('YOUR_API_KEY');
const applications = client.applications.paginator.fetchAll();

In a similar manner, in order to get a list of data points for an action, you can do the following

import Klu from 'klu';

const client = new Klu('YOUR_API_KEY');
const data = client.data.getActionData('actionId');

There is a special client that allows to stream action prompts. The streaming url can be received from the action creation response.

import { Klu } from 'src';

const client = new Klu('YOUR_API_KEY');

const dataStream = await client.actions.runActionPrompt(
  'actionGuid',
  'prompt input',
  { streaming: true }
);
for await (const token of dataStream) {
  tokens.push(token || '');
}

Documentation

For more detailed information on how to use the Klu.AI Typescript SDK, please refer to the API documentation.

0.0.8

8 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago