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.
61 lines
1.6 KiB
61 lines
1.6 KiB
2 years ago
|
|
||
|
import os
|
||
|
import re
|
||
|
from pathlib import Path
|
||
|
from typing import Dict, List
|
||
|
|
||
|
from fastapi.templating import Jinja2Templates
|
||
|
|
||
|
from swarms.agents.workers.agents import AgentManager
|
||
|
from swarms.utils.utils import BaseHandler, FileHandler, FileType, StaticUploader, CsvToDataframe
|
||
|
|
||
|
from swarms.tools.main import BaseToolSet, ExitConversation, RequestsGet, CodeEditor, Terminal
|
||
|
|
||
|
from env import settings
|
||
|
|
||
|
|
||
|
BASE_DIR = Path(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||
|
os.chdir(BASE_DIR / os.getenv["PLAYGROUND_DIR"])
|
||
|
|
||
|
|
||
|
toolsets: List[BaseToolSet] = [
|
||
|
Terminal(),
|
||
|
CodeEditor(),
|
||
|
RequestsGet(),
|
||
|
ExitConversation(),
|
||
|
]
|
||
|
handlers: Dict[FileType, BaseHandler] = {FileType.DATAFRAME: CsvToDataframe()}
|
||
|
|
||
|
if os.getenv["USE_GPU"]:
|
||
|
import torch
|
||
|
|
||
|
from swarms.tools.main import ImageCaptioning
|
||
|
from swarms.tools.main import (
|
||
|
ImageEditing,
|
||
|
InstructPix2Pix,
|
||
|
Text2Image,
|
||
|
VisualQuestionAnswering,
|
||
|
)
|
||
|
|
||
|
if torch.cuda.is_available():
|
||
|
toolsets.extend(
|
||
|
[
|
||
|
Text2Image("cuda"),
|
||
|
ImageEditing("cuda"),
|
||
|
InstructPix2Pix("cuda"),
|
||
|
VisualQuestionAnswering("cuda"),
|
||
|
]
|
||
|
)
|
||
|
handlers[FileType.IMAGE] = ImageCaptioning("cuda")
|
||
|
|
||
|
agent_manager = AgentManager.create(toolsets=toolsets)
|
||
|
|
||
|
file_handler = FileHandler(handlers=handlers, path=BASE_DIR)
|
||
|
|
||
|
templates = Jinja2Templates(directory=BASE_DIR / "api" / "templates")
|
||
|
|
||
|
uploader = StaticUploader.from_settings(
|
||
|
settings, path=BASE_DIR / "static", endpoint="static"
|
||
|
)
|
||
|
|
||
|
reload_dirs = [BASE_DIR / "swarms", BASE_DIR / "api"]
|