You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/swarms/__init__.py

23 lines
462 B

import warnings
warnings.filterwarnings("ignore", category=UserWarning)
# disable tensorflow warnings
import os
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2"
from swarms.logo import logo
print(logo)
from swarms import agents
from swarms.swarms.orchestrate import Orchestrator
from swarms import swarms
from swarms import structs
from swarms import models
from swarms.chunkers import chunkers
from swarms.workers.worker import Worker
from swarms import workers