Skip to content

Commit

Permalink
Release 2024-08-06 (#48)
Browse files Browse the repository at this point in the history
* sync codegen, format

* bump version
  • Loading branch information
liamgriffiths authored Aug 6, 2024
1 parent 0f7b7fc commit 77c708f
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 40 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]>",]
Expand Down
2 changes: 1 addition & 1 deletion scripts/sync_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
118 changes: 81 additions & 37 deletions substrate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__",
Expand Down Expand Up @@ -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"

0 comments on commit 77c708f

Please sign in to comment.