Akash1267a commited on
Commit
90ed45c
1 Parent(s): f51b9f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ from langchain.llms import OpenAI
8
 
9
  #Function to return the response
10
  def load_answer(question):
11
- llm = OpenAI(model_name="text-davinci-003",temperature=0)
12
  answer=llm(question)
13
  return answer
14
 
 
8
 
9
  #Function to return the response
10
  def load_answer(question):
11
+ llm = OpenAI(model_name="text-davinci-003",temperature=10)
12
  answer=llm(question)
13
  return answer
14