Getting Started

Installation

Install agentOrc in a Node.js project.

Requirements

  • Node.js 22.5 or newer
  • TypeScript recommended (but not required)
  • An OpenAI-compatible embedding endpoint
  • An OpenAI-compatible chat endpoint (for compression)

npm

bashbash
npm install agentorc

pnpm / yarn / bun

bashbash
pnpm add agentorc
yarn add agentorc
bun add agentorc

Verify the install

verify.tstypescript
import { AgentOrc } from "agentorc";

const ctx = new AgentOrc();
console.log(ctx.isInitialized); // false until init()