ducknew commited on
Commit
5beead5
·
1 Parent(s): c6608e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,7 +76,7 @@ def chat_gpt(input, use_web, use_vec, history=None):
76
 
77
  llm = OpenAI(temperature = 0.2)
78
  chain = LLMChain(llm=llm, prompt=prompt)
79
- result = chain.run(text)
80
  return result
81
 
82
  def predict(input,
 
76
 
77
  llm = OpenAI(temperature = 0.2)
78
  chain = LLMChain(llm=llm, prompt=prompt)
79
+ result = chain.run(input)
80
  return result
81
 
82
  def predict(input,