|
|
@ -1,8 +1,10 @@
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from typing import Dict, List, Optional, Union
|
|
|
|
from typing import Dict, List, Optional, Union
|
|
|
|
|
|
|
|
|
|
|
|
from swarms.workers.worker import Worker
|
|
|
|
from swarms.workers.worker import Worker
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
@dataclass
|
|
|
|
class GroupChat:
|
|
|
|
class GroupChat:
|
|
|
|
"""A group chat with multiple participants with a list of agents and a max number of rounds"""
|
|
|
|
"""A group chat with multiple participants with a list of agents and a max number of rounds"""
|
|
|
|