bump: version 1.14.4 → 1.14.5.dev1

This commit is contained in:
Krrish Dholakia 2023-12-14 15:23:52 -08:00
parent e45b491985
commit 804d58eb20
2 changed files with 3 additions and 2 deletions

View file

@ -552,6 +552,7 @@ def _embedding_func_single(
## FORMAT EMBEDDING INPUT ##
provider = model.split(".")[0]
inference_params = copy.deepcopy(optional_params)
inference_params.pop("user", None) # make sure user is not passed in for bedrock call
if provider == "amazon":
input = input.replace(os.linesep, " ")
data = {"inputText": input, **inference_params}

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "1.14.4"
version = "1.14.5.dev1"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT License"
@ -55,7 +55,7 @@ requires = ["poetry-core", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.14.4"
version = "1.14.5.dev1"
version_files = [
"pyproject.toml:^version"
]