startAgent
codebolt.agent.startAgent(task: string): Promise<any>
Starts an agent for the specified task.
Parameters
Name | Type | Description |
---|---|---|
task | string | The 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);