Welcome to the Isosceles API Quickstart Guide. This guide will help you get up and running quickly using our TypeScript SDKs.

SDK Installation

TypeScript SDK

To install the TypeScript SDK, use the following npm command:

npm i @isosceles-ai/sdk

Getting Started with TypeScript

Here’s a simple example to get you started with the Isosceles TypeScript SDK.

  1. Install the SDK

    npm add @isosceles-ai/sdk
    
  2. Initialize the Client

import { Isosceles } from "@isosceles-ai/sdk";

const isosceles = new Isosceles({
  security: {
    username: process.env["ISOSCELES_USERNAME"] ?? "",
    password: process.env["ISOSCELES_PASSWORD"] ?? "",
  },
});
  1. Make a Request
async function run() {
  const result = await isosceles.brain.createBrain({
    name: "Test - brain",
  });

  // Handle the result
  console.log(result);
}

run();

For more details, refer to the TypeScript SDK documentation.

Next Steps

Once you have installed the SDK and made your first request, explore the following sections to learn more about Isosceles’s capabilities:

Need Help?

If you encounter any issues or need further assistance, please contact our support team.


By following this guide, you’ll be able to quickly integrate Isosceles’s powerful features into your applications. Get started now and transform the way your team interacts with your data!