faizanmumtaz commited on
Commit
95cf6df
·
1 Parent(s): 7a78443

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -6,8 +6,9 @@ os.environ["OPENAI_API_KEY"]="sk-ZYRgQoWlzp1TfCdYNDvtT3BlbkFJ1nw3yGmZt2VStA1J1Yt
6
  import streamlit as st
7
 
8
  def get_openai_response(question):
9
- llm=OpenAI(model_name="gpt-3.5-turbo",temperature=0)
10
- return llm(question)
 
11
 
12
  st.set_page_config(page_title="Q&N ChatBot")
13
  st.header("LangChain Application")
 
6
  import streamlit as st
7
 
8
  def get_openai_response(question):
9
+ # llm=OpenAI(model_name="gpt-3.5-turbo",temperature=0)
10
+ # return llm(question)
11
+ return "I am best what about you"
12
 
13
  st.set_page_config(page_title="Q&N ChatBot")
14
  st.header("LangChain Application")