ashwinR commited on
Commit
3511f30
·
1 Parent(s): 129ce37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ gptj = gpt4all.GPT4All(PATH)
19
 
20
  def generate_response(question):
21
  #response = llm_chain.run(question)
22
- question = [{"role": "user", "content" : "What is the code to add two numbers in Python"}]
23
- ret = gptj.chat_completion(question)
24
  return response
25
 
26
 
 
19
 
20
  def generate_response(question):
21
  #response = llm_chain.run(question)
22
+ question = [{"role": "user", "content" : question}]
23
+ response = gptj.chat_completion(question)
24
  return response
25
 
26