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.
16 lines
385 B
16 lines
385 B
import os
|
|
import logging
|
|
import warnings
|
|
|
|
from swarms.telemetry.auto_upgrade_swarms import auto_update
|
|
from swarms.utils.disable_logging import disable_logging
|
|
|
|
|
|
def bootup():
|
|
"""Bootup swarms"""
|
|
disable_logging()
|
|
logging.disable(logging.CRITICAL)
|
|
os.environ["WANDB_SILENT"] = "true"
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
auto_update()
|