From 7c87a37ec835c5dbc6d3767cd272cc0d9012cbbb Mon Sep 17 00:00:00 2001 From: Kye Date: Sat, 11 Nov 2023 17:43:51 -0500 Subject: [PATCH] remove fuyu Former-commit-id: 8cb88dbc165e43ac020fe9a10d5bddb34c988eb3 --- pyproject.toml | 2 +- swarms/models/__init__.py | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 973ea8ad..26734224 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "2.1.9" +version = "2.2.0" description = "Swarms - Pytorch" license = "MIT" authors = ["Kye Gomez "] diff --git a/swarms/models/__init__.py b/swarms/models/__init__.py index 539e8832..44b752ff 100644 --- a/swarms/models/__init__.py +++ b/swarms/models/__init__.py @@ -2,7 +2,6 @@ from swarms.models.anthropic import Anthropic from swarms.models.petals import Petals from swarms.models.mistral import Mistral - from swarms.models.openai_models import OpenAI, AzureOpenAI, OpenAIChat from swarms.models.zephyr import Zephyr from swarms.models.biogpt import BioGPT @@ -16,10 +15,9 @@ from swarms.models.kosmos_two import Kosmos from swarms.models.vilt import Vilt from swarms.models.nougat import Nougat from swarms.models.layoutlm_document_qa import LayoutLMDocumentQA - -# from swarms.models.gpt4v import GPT4Vision -# from swarms.models.dalle3 import Dalle3 -# from swarms.models.distilled_whisperx import DistilWhisperModel +from swarms.models.gpt4v import GPT4Vision +from swarms.models.dalle3 import Dalle3 +from swarms.models.distilled_whisperx import DistilWhisperModel # from swarms.models.fuyu import Fuyu # Not working, wait until they update import sys @@ -46,5 +44,5 @@ __all__ = [ "WizardLLMStoryTeller", "GPT4Vision", "Dalle3", - "Fuyu", + # "Fuyu", ]