Katexs SDKs

Build faster with our official client libraries.

Node.js

$ npm install @katexs/sdk
⚠️ These packages are not yet published. Join the beta for early access.

Python

$ pip install katexs
⚠️ These packages are not yet published. Join the beta for early access.

Go

$ go get github.com/katexs/katexs-go
⚠️ These packages are not yet published. Join the beta for early access.

Node.js Quick Start

import { Katexs } from '@katexs/sdk';

const katexs = new Katexs({ apiKey: 'your-api-key' });

const agent = await katexs.agents.create({
  name: 'My First Agent',
  type: 'voice',
});

console.log(agent.id);