From 50132989d0091f1e991d86447a97ccc9c487b32f Mon Sep 17 00:00:00 2001 From: Justin Hayes Date: Fri, 28 Jun 2024 10:52:05 -0400 Subject: [PATCH] Bump `max_output_tokens` --- examples/pipelines/providers/google_manifold_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pipelines/providers/google_manifold_pipeline.py b/examples/pipelines/providers/google_manifold_pipeline.py index 02c82e5..b4c3b12 100644 --- a/examples/pipelines/providers/google_manifold_pipeline.py +++ b/examples/pipelines/providers/google_manifold_pipeline.py @@ -112,7 +112,7 @@ class Pipeline: temperature=body.get("temperature", 0.7), top_p=body.get("top_p", 1.0), top_k=body.get("top_k", 1), - max_output_tokens=body.get("max_tokens", 1024), + max_output_tokens=body.get("max_tokens", 8192), ) )