lorentz commited on
Commit
12fabd0
·
verified ·
1 Parent(s): bdbd09e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ load_dotenv() # load the env-sample.txt file
9
 
10
  def getLLMResponse(query,age_option,tasktype_option):
11
  examples = []
12
- llm = OpenAI(temperature=.9, model="gpt-3.5-turbo-instruct")
13
 
14
  if age_option=="Kid": #Silly and Sweet Kid
15
 
 
9
 
10
  def getLLMResponse(query,age_option,tasktype_option):
11
  examples = []
12
+ llm = OpenAI(temperature=.9, model="text-embedding-ada-002") # gpt-3.5-turbo-instruct
13
 
14
  if age_option=="Kid": #Silly and Sweet Kid
15