avinashmhto commited on
Commit
cdc35ba
·
1 Parent(s): 9841833

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from langchain.llms import HuggingFaceHub
5
 
6
  #Function to return the response
7
  def load_answer(question):
8
- llm = HuggingFaceHub(repo_id="google/flan-t5-large",temprature=0)
9
  answer=llm(question)
10
  return answer
11
 
 
5
 
6
  #Function to return the response
7
  def load_answer(question):
8
+ llm = HuggingFaceHub(repo_id="google/flan-t5-large")
9
  answer=llm(question)
10
  return answer
11