import { Scoopika, Box } from "@scoopika/scoopika";

const scoopika = new Scoopika({...}); // set your scoopika config
const box = new Box("BOX_ID", scoopika);

You can use the Box class to initialize and new smart box instance. What are multi-agent boxes

Arguments

id
string
required

The box ID. your box ID is shown next to its name in the platform, just click it to copy.

scoopika
Scoopika
required

An instance of the Scoopika class that you previously initialized.

Reference to Scoopika instance

import { Scoopika, Box } from "@scoopika/scoopika";

const scoopika = new Scoopika({...}); // set your scoopika config
const box = new Box("BOX_ID", scoopika);

Was this page helpful?