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] #2582

Merged
merged 1 commit into from
Nov 2, 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
@@ -1,5 +1,5 @@
from .model import AnthropicCompletions

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ('AnthropicCompletions',)
2 changes: 1 addition & 1 deletion plugins/cohere/superduper_cohere/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import CohereEmbed, CohereGenerate

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = 'CohereEmbed', 'CohereGenerate'
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.5"
__version__ = "0.4.0"

__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.5"
__version__ = "0.4.0"

__all__ = ['JinaEmbedding']
2 changes: 1 addition & 1 deletion plugins/lance/superduper_lance/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .lance import LanceVectorSearcher as VectorSearcher

__version__ = "0.0.6"
__version__ = "0.4.0"

__all__ = ['VectorSearcher']
2 changes: 1 addition & 1 deletion plugins/llamacpp/superduper_llamacpp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import LlamaCpp, LlamaCppEmbedding

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ['LlamaCpp', 'LlamaCppEmbedding']
2 changes: 1 addition & 1 deletion plugins/mongodb/superduper_mongodb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .query import MongoQuery
from .vector_search import MongoAtlasVectorSearcher as VectorSearcher

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = [
"ArtifactStore",
Expand Down
2 changes: 1 addition & 1 deletion plugins/openai/superduper_openai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import OpenAIChatCompletion, OpenAIEmbedding

__version__ = "0.0.9"
__version__ = "0.4.0"

__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
@@ -1,5 +1,5 @@
from .encoder import pil_image

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ['pil_image']
2 changes: 1 addition & 1 deletion plugins/qdrant/superduper_qdrant/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .qdrant import QdrantVectorSearcher as VectorSearcher

__version__ = "0.0.1"
__version__ = "0.4.0"

__all__ = ['VectorSearcher']
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import SentenceTransformer

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ('SentenceTransformer',)
2 changes: 1 addition & 1 deletion plugins/sklearn/superduper_sklearn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model import Estimator, SklearnTrainer

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = 'Estimator', 'SklearnTrainer'
1 change: 1 addition & 0 deletions plugins/sqlalchemy/plugin_test/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ artifact_store: null
data_backend: sqlite://
auto_schema: false
json_native: false
force_apply: true
2 changes: 1 addition & 1 deletion plugins/sqlalchemy/superduper_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .metadata import SQLAlchemyMetadata as MetaDataStore

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ['MetaDataStore']
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.5"
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion plugins/torch/superduper_torch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from .model import TorchModel, torchmodel
from .training import TorchTrainer

__version__ = "0.0.5"
__version__ = "0.4.0"

__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
@@ -1,6 +1,6 @@
from .model import LLM, TextClassificationPipeline
from .training import LLMTrainer

__version__ = "0.0.5"
__version__ = "0.4.0"

__all__ = ('TextClassificationPipeline', 'LLM', 'LLMTrainer')
Loading