From d13d4d95ce415fe91f08818e924f98c4316cb59c Mon Sep 17 00:00:00 2001 From: mudler Date: Sun, 7 May 2023 10:13:24 +0200 Subject: [PATCH] examples: fix default parameter --- examples/query_data/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/query_data/update.py b/examples/query_data/update.py index 9ad283c..55130d0 100644 --- a/examples/query_data/update.py +++ b/examples/query_data/update.py @@ -13,7 +13,7 @@ base_path = os.environ.get('OPENAI_API_BASE', 'http://localhost:8080/v1') llm_predictor = LLMPredictor(llm=OpenAI(temperature=0, model_name="gpt-3.5-turbo", openai_api_base=base_path)) # Configure prompt parameters and initialise helper -max_input_size = 1024 +max_input_size = 512 num_output = 256 max_chunk_overlap = 20