joeyanuff commited on
Commit
cf5703f
·
1 Parent(s): 9f8dd33

prompt commas

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ CHARACTER_DEFAULT = "The Old Lady Who Swallowed A Fly"
20
  # )
21
  PROMPT_TEMPLATE = PromptTemplate(
22
  input_variables=["num_words", "literary_style", "emotions", "character", "original_words"],
23
- template="Express the following {num_words}{literary_style}{emotions}{character}: \n{original_words}\n",
24
  )
25
 
26
  def set_openai_api_key(api_key, openai_api_key, temperature, llm_chain):
 
20
  # )
21
  PROMPT_TEMPLATE = PromptTemplate(
22
  input_variables=["num_words", "literary_style", "emotions", "character", "original_words"],
23
+ template="{num_words}{literary_style}{emotions}{character} express the following: \n{original_words}\n",
24
  )
25
 
26
  def set_openai_api_key(api_key, openai_api_key, temperature, llm_chain):