diff --git a/clients/python/llmengine/__init__.py b/clients/python/llmengine/__init__.py index 1d882f5c..d7567145 100644 --- a/clients/python/llmengine/__init__.py +++ b/clients/python/llmengine/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.0.beta4" +__version__ = "0.0.0.beta5" from typing import Sequence diff --git a/clients/python/pyproject.toml b/clients/python/pyproject.toml index f8c28795..7ca3992d 100644 --- a/clients/python/pyproject.toml +++ b/clients/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scale-llm-engine" -version = "0.0.0.beta4" +version = "0.0.0.beta5" description = "Scale LLM Engine Python client" license = "Apache-2.0" authors = ["Phil Chen "] diff --git a/clients/python/setup.py b/clients/python/setup.py index d0cb52ab..dbf97fb6 100644 --- a/clients/python/setup.py +++ b/clients/python/setup.py @@ -3,6 +3,6 @@ setup( name="scale-llm-engine", python_requires=">=3.7", - version="0.0.0.beta4", + version="0.0.0.beta5", packages=find_packages(), )