From 6ff3b473c4525339cec44496e13daa84fcf29772 Mon Sep 17 00:00:00 2001 From: Charlie Holtz Date: Mon, 27 Mar 2023 12:30:08 -0700 Subject: [PATCH] fix typo --- docs/modules/llms/integrations/replicate.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/llms/integrations/replicate.ipynb b/docs/modules/llms/integrations/replicate.ipynb index bf4db10a0ae..478b5856884 100644 --- a/docs/modules/llms/integrations/replicate.ipynb +++ b/docs/modules/llms/integrations/replicate.ipynb @@ -254,7 +254,7 @@ "source": [ "second_prompt = PromptTemplate(\n", " input_variables=[\"company_name\"],\n", - " template=\"Write a description of an logo for this company: {company_name}\",\n", + " template=\"Write a description of a logo for this company: {company_name}\",\n", ")\n", "chain_two = LLMChain(llm=llm, prompt=second_prompt)" ] @@ -273,8 +273,8 @@ "outputs": [], "source": [ "third_prompt = PromptTemplate(\n", - " input_variables=[\"company_log_description\"],\n", - " template=\"{company_log_description}\",\n", + " input_variables=[\"company_logo_description\"],\n", + " template=\"{company_logo_description}\",\n", ")\n", "chain_three = LLMChain(llm=text2image, prompt=third_prompt)" ]