From e4f965072d2b8ab7ca6efb425ef4c5cbc5444bbc Mon Sep 17 00:00:00 2001 From: Brandon Phillips Date: Thu, 4 Jul 2024 07:54:09 -0600 Subject: [PATCH] modified preset_prompt_kwargs to prompt_kwargs --- use_cases/simple_qa_anthropic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/use_cases/simple_qa_anthropic.py b/use_cases/simple_qa_anthropic.py index 63273354..0c2dc8a2 100644 --- a/use_cases/simple_qa_anthropic.py +++ b/use_cases/simple_qa_anthropic.py @@ -14,7 +14,7 @@ def __init__(self): self.generator = Generator( model_client=AnthropicAPIClient(), model_kwargs={"model": "claude-3-opus-20240229", "max_tokens": 1000}, - preset_prompt_kwargs={ + prompt_kwargs={ "task_desc_str": "You are a helpful assistant and with a great sense of humor." }, )