Standard Mode
Running Suites in Standard Mode allows you to create groupings of agents that are running in standard mode. This is useful for prototyping.
Using Standard Mode
1
Create Agents
Create a few agents that you want to group together
from swiftagent import SwiftAgent, SwiftSuite
import asyncio
agent1 = SwiftAgent(name='bob', description='Analytical agent capable of synthesizing multiple ideas into a coherent paragraph')
agent2 = SwiftAgent(name='alice', description='Creative agent that comes up with ideas')Last updated