SDK

Korvis AI
SDK

Official TypeScript and Python SDKs for building, publishing, and integrating with the Korvis AI platform.

TypeScript · npm install @korvis/sdk
import { KorvisOS } from '@korvis/sdk';

const client = new KorvisOS({ apiKey: process.env.KORVIS_API_KEY });

// List installed agents
const agents = await client.agents.list();

// Run an agent
const result = await client.agents.run('agent_id', {
  input: 'Qualify this lead: John Smith, CTO at Acme Corp',
});

console.log(result.output);
Python · pip install korvis
from korvis import KorvisOS

client = KorvisOS(api_key=os.environ["KORVIS_API_KEY"])

# List installed agents
agents = client.agents.list()

# Run an agent
result = client.agents.run(
    "agent_id",
    input="Qualify this lead: John Smith, CTO at Acme Corp"
)

print(result.output)