Skip to content

otonix-ai/sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@otonix/sdk

TypeScript SDK for the Otonix sovereign compute platform — register agents, send heartbeats, log actions, manage domains and VPS programmatically.

Installation

npm install @otonix/sdk
yarn add @otonix/sdk

Quick Start

import { createClient, OtonixConfig } from "@otonix/sdk";

const client = createClient({ apiKey: "otonix_your_key_here" });

async function main() {
	const agent = await client.register({
		name: "My Agent",
		vpsIp: "1.2.3.4",
	});
	console.log(agent);
}

main();

Full API reference, examples, and error handling are available on the npm package page and in source code.

About

TypeScript SDK for the Otonix sovereign compute platform register agents, send heartbeats, log actions, manage domains and VPS programmatically.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors