Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2024-08-06 #48

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "liamgriffiths <[email protected]>",]
2 changes: 1 addition & 1 deletion scripts/sync_version.py
Original file line number Diff line number Diff line change
@@ -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"
118 changes: 81 additions & 37 deletions substrate/__init__.py
Original file line number Diff line number Diff line change
@@ -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",
]
]
2 changes: 1 addition & 1 deletion substrate/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "220240617.1.7"
__version__ = "220240617.1.8"