diff --git a/playground/models/kosmos2_example.py b/playground/models/kosmos2_example.py deleted file mode 100644 index 6fc4df02..00000000 --- a/playground/models/kosmos2_example.py +++ /dev/null @@ -1,10 +0,0 @@ -from swarms.models.kosmos2 import Kosmos2 -from PIL import Image - - -model = Kosmos2.initialize() - -image = Image.open("images/swarms.jpg") - -detections = model(image) -print(detections) diff --git a/playground/models/kosmos_two_example.py b/playground/models/kosmos_two_example.py deleted file mode 100644 index 8bf583cd..00000000 --- a/playground/models/kosmos_two_example.py +++ /dev/null @@ -1,11 +0,0 @@ -from swarms.models.kosmos_two import Kosmos - -# Initialize Kosmos -kosmos = Kosmos() - -# Perform multimodal grounding -out = kosmos.multimodal_grounding( - "Find the red apple in the image.", "images/swarms.jpeg" -) - -print(out) diff --git a/pyproject.toml b/pyproject.toml index c9f0c28d..f4971b47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "4.0.1" +version = "4.0.2" description = "Swarms - Pytorch" license = "MIT" authors = ["Kye Gomez "]