import type { BoxData } from "@scoopika/types";
{
	"id": "BOX_ID",
	"agents": [
		"id": "AGENT_1",
		"name": "agent_name",
		"description": "agent description",
		"avatar": "IMG_URL",
		"prompts": [],
		"tools": []
	]
}

Represents a box within Scoopika.

id
string

The ID of the box.

agents
AgentData[]

The list of agents available under the box.

Reference to AgentData

import type { BoxData } from "@scoopika/types";
{
	"id": "BOX_ID",
	"agents": [
		"id": "AGENT_1",
		"name": "agent_name",
		"description": "agent description",
		"avatar": "IMG_URL",
		"prompts": [],
		"tools": []
	]
}