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.
22 lines
473 B
22 lines
473 B
import os
|
|
import warnings
|
|
|
|
warnings.filterwarnings("ignore", category=UserWarning)
|
|
|
|
# disable tensorflow warnings
|
|
|
|
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2"
|
|
|
|
|
|
from swarms import workers
|
|
from swarms.workers.worker import Worker
|
|
|
|
# from swarms import chunkers
|
|
from swarms.models import * # import * only works when __all__ = [] is defined in __init__.py
|
|
from swarms import structs
|
|
from swarms import swarms
|
|
from swarms import agents
|
|
from swarms.logo import logo
|
|
|
|
print(logo)
|