@qbraid-core
    Preparing search index...

    Module @qbraid-core/compute

    qbraid

    @qbraid-core/compute

    Stable npm

    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.

    Classes

    ComputeManagerClient
    ComputeManagerClientV1

    Interfaces

    ComputeProfile
    ComputeProfileV1
    LabTokenResponse
    ProfileCost
    ProfileQueryParamsV1
    ServerStartResponseV1
    ServerStatusResponseV1
    ServerStopResponseV1
    SessionTokenResponseV1
    UserServerStatus