From 3cbb0a289a67e2afa1fc071e961ac3dd4fee8769 Mon Sep 17 00:00:00 2001 From: Hiromasa Kakehashi Date: Fri, 20 Sep 2024 16:12:58 +0900 Subject: [PATCH] Fix method call typo --- .../pipelines/providers/google_vertexai_manifold_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pipelines/providers/google_vertexai_manifold_pipeline.py b/examples/pipelines/providers/google_vertexai_manifold_pipeline.py index 2d58262..4fe085f 100644 --- a/examples/pipelines/providers/google_vertexai_manifold_pipeline.py +++ b/examples/pipelines/providers/google_vertexai_manifold_pipeline.py @@ -99,7 +99,7 @@ class Pipeline: if body.get("title", False): # If chat title generation is requested contents = [Content(role="user", parts=[Part.from_text(user_message)])] else: - contents = self._build_conversation_history(messages) + contents = self.build_conversation_history(messages) generation_config = GenerationConfig( temperature=body.get("temperature", 0.7),