diff --git a/pyproject.toml b/pyproject.toml index d0f2fc7..b49f33d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "substrate" -version = "220240617.1.7" +version = "220240617.1.8" description = "Substrate Python SDK" readme = "README.md" authors = [ "vprtwn ", "liamgriffiths ",] diff --git a/scripts/sync_version.py b/scripts/sync_version.py index 6ae7883..a67ad9d 100644 --- a/scripts/sync_version.py +++ b/scripts/sync_version.py @@ -10,7 +10,7 @@ def ok(message): print("\033[32m✓\033[0m", message) -SDK_VERSION = "2.1.7" +SDK_VERSION = "2.1.8" # Update version version_path = "substrate/GEN_VERSION" diff --git a/substrate/__init__.py b/substrate/__init__.py index 0f974d3..d5458ae 100644 --- a/substrate/__init__.py +++ b/substrate/__init__.py @@ -4,56 +4,100 @@ 20240617.20240806 """ +from .run_python import RunPython from .nodes import ( - CLIP, - If, + + Experimental, + Box, - JinaV2, - EmbedText, - EmbedImage, - EraseImage, - ComputeJSON, + + If, + ComputeText, - Experimental, - FetchVectors, + + MultiComputeText, + + BatchComputeText, + + BatchComputeJSON, + + ComputeJSON, + + MultiComputeJSON, + + Mistral7BInstruct, + + Mixtral8x7BInstruct, + + Llama3Instruct8B, + + Llama3Instruct70B, + Firellava13B, + + GenerateImage, + + MultiGenerateImage, + InpaintImage, + + MultiInpaintImage, + + StableDiffusionXLLightning, + + StableDiffusionXLInpaint, + + StableDiffusionXLControlNet, + + StableVideoDiffusion, + + InterpolateFrames, + + TranscribeSpeech, + + GenerateSpeech, + + RemoveBackground, + + EraseImage, + UpscaleImage, - DeleteVectors, - GenerateImage, + + SegmentUnderPoint, + + SegmentAnything, + SplitDocument, - UpdateVectors, - GenerateSpeech, + + EmbedText, + MultiEmbedText, + + EmbedImage, + MultiEmbedImage, - SegmentAnything, - BatchComputeJSON, - BatchComputeText, + + JinaV2, + + CLIP, + + FindOrCreateVectorStore, + ListVectorStores, - Llama3Instruct8B, - MultiComputeJSON, - MultiComputeText, - QueryVectorStore, - RemoveBackground, - TranscribeSpeech, + DeleteVectorStore, - InterpolateFrames, - Llama3Instruct70B, - Mistral7BInstruct, - MultiInpaintImage, - SegmentUnderPoint, - MultiGenerateImage, - Mixtral8x7BInstruct, - StableVideoDiffusion, - FindOrCreateVectorStore, - StableDiffusionXLInpaint, - StableDiffusionXLLightning, - StableDiffusionXLControlNet, -) + + QueryVectorStore, + + FetchVectors, + + UpdateVectors, + + DeleteVectors, + ) from .core.sb import sb from ._version import __version__ from .substrate import Secrets, Substrate, SubstrateResponse -from .run_python import RunPython __all__ = [ "__version__", @@ -106,4 +150,4 @@ "FetchVectors", "UpdateVectors", "DeleteVectors", -] + ] \ No newline at end of file diff --git a/substrate/_version.py b/substrate/_version.py index b339ed1..3637210 100644 --- a/substrate/_version.py +++ b/substrate/_version.py @@ -1 +1 @@ -__version__ = "220240617.1.7" +__version__ = "220240617.1.8" \ No newline at end of file