From 8502117f62fc4caa53d504ccc9d4e6a512006e7f Mon Sep 17 00:00:00 2001 From: Harrison Chase Date: Wed, 28 Jun 2023 23:48:42 -0700 Subject: [PATCH] bump version to 219 (#6899) --- langchain/llms/vertexai.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/langchain/llms/vertexai.py b/langchain/llms/vertexai.py index 22f5cc429..1e6983082 100644 --- a/langchain/llms/vertexai.py +++ b/langchain/llms/vertexai.py @@ -141,6 +141,7 @@ class VertexAI(_VertexAICommon, LLM): prompt: str, stop: Optional[List[str]] = None, run_manager: Optional[AsyncCallbackManagerForLLMRun] = None, + **kwargs: Any, ) -> str: """Call Vertex model to get predictions based on the prompt. diff --git a/pyproject.toml b/pyproject.toml index 1e3d0090e..53e3ed4bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain" -version = "0.0.218" +version = "0.0.219" description = "Building applications with LLMs through composability" authors = [] license = "MIT"