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

[PLUGINS] Bump Version [all] #2486

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
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 plugins/anthropic/superduper_anthropic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from .model import AnthropicCompletions

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ('AnthropicCompletions',)
2 changes: 1 addition & 1 deletion plugins/cohere/superduper_cohere/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from .model import CohereEmbed, CohereGenerate

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = 'CohereEmbed', 'CohereGenerate'
2 changes: 1 addition & 1 deletion plugins/dummy/superduper_dummy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.0.2"
__version__ = "0.0.5"

print("This is a dummy package.")
2 changes: 1 addition & 1 deletion plugins/ibis/superduper_ibis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .data_backend import IbisDataBackend as DataBackend
from .query import IbisQuery

__version__ = "0.0.4"
__version__ = "0.0.5"

__all__ = ["IbisQuery", "DataBackend"]
2 changes: 1 addition & 1 deletion plugins/jina/superduper_jina/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import JinaEmbedding

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ['JinaEmbedding']
2 changes: 1 addition & 1 deletion plugins/llamacpp/superduper_llamacpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from .model import LlamaCpp, LlamaCppEmbedding

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ['LlamaCpp', 'LlamaCppEmbedding']
2 changes: 1 addition & 1 deletion plugins/openai/superduper_openai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from .model import OpenAIChatCompletion, OpenAIEmbedding

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = 'OpenAIChatCompletion', 'OpenAIEmbedding'
2 changes: 1 addition & 1 deletion plugins/pillow/superduper_pillow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from .encoder import pil_image

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ['pil_image']
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .model import SentenceTransformer

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ('SentenceTransformer',)

Expand Down
2 changes: 1 addition & 1 deletion plugins/sklearn/superduper_sklearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

from .model import Estimator, SklearnTrainer

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = 'Estimator', 'SklearnTrainer'
2 changes: 1 addition & 1 deletion plugins/template/superduper_template/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.0'
__version__ = "0.0.5"
2 changes: 1 addition & 1 deletion plugins/torch/superduper_torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
from .encoder import tensor
from .model import TorchModel, torchmodel

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ('TorchModel', 'TorchTrainer', 'tensor', 'torchmodel')
2 changes: 1 addition & 1 deletion plugins/transformers/superduper_transformers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
from .model import LLM, TextClassificationPipeline
from .training import LLMTrainer

__version__ = "0.0.2"
__version__ = "0.0.5"

__all__ = ('TextClassificationPipeline', 'LLM', 'LLMTrainer')
2 changes: 1 addition & 1 deletion plugins/vllm/superduper_vllm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["VllmChat", "VllmCompletion"]

__version__ = "0.0.1"
__version__ = "0.0.5"
Loading