Skip to main content

startAgent

codebolt.agent.startAgent(task: string): Promise<any>
Starts an agent for the specified task.

Parameters

NameTypeDescription
taskstringThe task for which the agent should be started.

Returns:

 Promise<any>
A promise that resolves when the agent has been successfully started.

Example

// Example: Starting an agent for a task
const startResponse = await codebolt.agent.startAgent("dataProcessing");
console.log("Agent Start Response:", startResponse);