Client for the qBraid Compute Manager.
npm install @qbraid-core/compute
import { QbraidSessionV1 } from '@qbraid-core/base';
import { ComputeManagerClientV1 } from '@qbraid-core/compute';
const session = new QbraidSessionV1('your-api-key');
const client = new ComputeManagerClientV1(session);
const profiles = await client.getProfiles();
profiles.forEach(profile => console.log(`${profile.slug} - ${profile.description}`));
import { ComputeManagerClient } from '@qbraid-core/compute';
const client = new ComputeManagerClient();
const profiles = await client.getComputeManager('your-email');
profiles.forEach(profile => console.log(`${profile.slug} - ${profile.description}`));
This software is proprietary and subject to the terms of the qBraid Commercial Software License.