diff --git a/langchain/llms/vertexai.py b/langchain/llms/vertexai.py index 22f5cc4298..1e69830823 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 1e3d0090ea..53e3ed4bc7 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"