adinarayana commited on
Commit
7a694a5
·
verified ·
1 Parent(s): be69945

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ import streamlit as st
14
  def get_openai_response(question):
15
  llm = OpenAI(
16
  openai_api_key=os.getenv("OPEN_API_KEY"),
17
- model_name="text-davinci-003",
18
  temperature=0.6,
19
  )
20
  response = llm(question)
 
14
  def get_openai_response(question):
15
  llm = OpenAI(
16
  openai_api_key=os.getenv("OPEN_API_KEY"),
17
+ model_name="gpt-3.5-turbo-instruct",
18
  temperature=0.6,
19
  )
20
  response = llm(question)