By default, the GBOX SDK connects to the production API at https://gbox.ai/api/v1. You can customize this base URL to connect to different environments or self-hosted instances.
import GboxSDK from "gbox-sdk";const gboxSDK = new GboxSDK({ apiKey: process.env["GBOX_API_KEY"], baseURL: "https://gbox.ai/api/v1", // This is the default});