Development Guide
Step 1: Initialize the Framework
const deAI = new deAIMultiAgent({ config: { ... } });
Step 2: Add Agents
deAI.addAgent(
new BedrockLLMAgent({
name: "Trading Agent",
description: "Executes trades based on recommendations."
})
);
deAI.addAgent(
new BedrockLLMAgent({
name: "Market Agent",
description: "Focuses on trends and opportunities in Web3 and crypto."
})
);
Step 3: Handle Requests
Last updated