Skip to main content

getAllRemixAgents

client.agents.getAllRemixAgents(): Promise<RemixAgent[]>

Retrieves all remix agents.

Returns every remix agent that has been created in the system.

Parameters

No parameters.

Returns

Promise<RemixAgent[]> — A promise that resolves to an array of RemixAgent objects

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.agents.getAllRemixAgents();
console.log(result);