Former-commit-id: 9d9638ee62b475883b8ed12b27e3a7c9e93606af
pull/160/head
Kye 2 years ago
parent cd804d7c17
commit 266bb90c5e

@ -6,12 +6,12 @@ from typing import Dict, List
from fastapi.templating import Jinja2Templates from fastapi.templating import Jinja2Templates
from swarms.agents.utils.manager import AgentManager from swarms.agents.utils.manager import AgentManager
from swarms.utils.utils import BaseHandler, FileHandler, FileType from swarms.utils.main import BaseHandler, FileHandler, FileType
from swarms.tools.main import CsvToDataframe, ExitConversation, RequestsGet, CodeEditor, Terminal from swarms.tools.main import CsvToDataframe, ExitConversation, RequestsGet, CodeEditor, Terminal
from swarms.tools.main import BaseToolSet from swarms.tools.main import BaseToolSet
from swarms.utils.utils import StaticUploader from swarms.utils.main import StaticUploader
BASE_DIR = Path(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) BASE_DIR = Path(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
os.chdir(BASE_DIR / os.environ["PLAYGROUND_DIR"]) os.chdir(BASE_DIR / os.environ["PLAYGROUND_DIR"])

@ -5,7 +5,7 @@ from langchain.schema import AgentAction, AgentFinish, LLMResult
# from celery import Task # from celery import Task
# from ansi import ANSI, Color, Style, dim_multiline # from ansi import ANSI, Color, Style, dim_multiline
from swarms.utils.utils import ANSI, Color, Style, dim_multiline from swarms.utils.main import ANSI, Color, Style, dim_multiline
from swarms.utils.logger import logger from swarms.utils.logger import logger

@ -30,7 +30,7 @@ from tenacity import (
# from ansi import ANSI, Color, Style # from ansi import ANSI, Color, Style
from swarms.utils.utils import ANSI, Color, Style from swarms.utils.main import ANSI, Color, Style
import os import os
def _create_retry_decorator(llm: ChatOpenAI) -> Callable[[Any], Any]: def _create_retry_decorator(llm: ChatOpenAI) -> Callable[[Any], Any]:

@ -224,7 +224,7 @@ from langchain.callbacks.base import BaseCallbackHandler
from langchain.schema import AgentAction, AgentFinish, LLMResult from langchain.schema import AgentAction, AgentFinish, LLMResult
# from celery import Task # from celery import Task
from swarms.utils.utils import ANSI, Color, Style, dim_multiline, logger from swarms.utils.main import ANSI, Color, Style, dim_multiline, logger
class EVALCallbackHandler(BaseCallbackHandler): class EVALCallbackHandler(BaseCallbackHandler):

@ -3,10 +3,10 @@ from pathlib import Path
from typing import Dict, List from typing import Dict, List
from swarms.agents.utils.manager import AgentManager from swarms.agents.utils.manager import AgentManager
from swarms.utils.utils import BaseHandler, FileHandler, FileType from swarms.utils.main import BaseHandler, FileHandler, FileType
from swarms.tools.main import CsvToDataframe, ExitConversation, RequestsGet, CodeEditor, Terminal from swarms.tools.main import CsvToDataframe, ExitConversation, RequestsGet, CodeEditor, Terminal
from swarms.tools.main import BaseToolSet from swarms.tools.main import BaseToolSet
from swarms.utils.utils import StaticUploader from swarms.utils.main import StaticUploader
BASE_DIR = Path(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) BASE_DIR = Path(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
os.chdir(BASE_DIR / os.environ["PLAYGROUND_DIR"]) os.chdir(BASE_DIR / os.environ["PLAYGROUND_DIR"])

@ -428,7 +428,7 @@ import time
from datetime import datetime from datetime import datetime
from typing import Dict, List from typing import Dict, List
from swarms.utils.utils import ANSI, Color, Style # test from swarms.utils.main import ANSI, Color, Style # test
class Terminal(BaseToolSet): class Terminal(BaseToolSet):
def __init__(self): def __init__(self):
@ -1100,7 +1100,7 @@ from transformers import (
) )
from swarms.utils.utils import get_new_image_name from swarms.utils.main import get_new_image_name
class MaskFormer(BaseToolSet): class MaskFormer(BaseToolSet):
@ -1309,7 +1309,7 @@ from transformers import BlipForConditionalGeneration, BlipProcessor
# from core.prompts.file import IMAGE_PROMPT # from core.prompts.file import IMAGE_PROMPT
from swarms.prompts.prompts import IMAGE_PROMPT from swarms.prompts.prompts import IMAGE_PROMPT
from swarms.utils.utils import BaseHandler from swarms.utils.main import BaseHandler
class ImageCaptioning(BaseHandler): class ImageCaptioning(BaseHandler):
def __init__(self, device): def __init__(self, device):

@ -4,7 +4,7 @@ from pathlib import Path
# from env import DotEnv # from env import DotEnv
from swarms.utils.utils import AbstractUploader from swarms.utils.main import AbstractUploader
class StaticUploader(AbstractUploader): class StaticUploader(AbstractUploader):
def __init__(self, server: str, path: Path, endpoint: str): def __init__(self, server: str, path: Path, endpoint: str):

Loading…
Cancel
Save