Skip to content
AAniki SDK

Build production-ready AI agents

Aniki SDK is a provider-agnostic TypeScript SDK for building AI agents you can inspect, test, and trust in production.

import { Agent, Runner } from "aniki-sdk";

const agent = new Agent({
  name: "assistant",
  instructions: "You are a helpful assistant.",
});

const result = await new Runner().run(agent, "Hello!");
console.log(result.output);