Skip to main content

getRemixAgent

client.agents.getRemixAgent(name: string): Promise<RemixAgent>

Retrieves a specific remix agent by name.

Returns the full definition of a remix agent, including its base agent reference and customizations.

Parameters

ParameterTypeRequiredDescription
namestringYesThe name of the remix agent to retrieve

Returns

Promise<RemixAgent> — A promise that resolves to the RemixAgent object

Example

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

const client = new CodeBoltClient();

const result = await client.agents.getRemixAgent('name');
console.log(result);