Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def get_openai_response(question):
|
|
13 |
return response
|
14 |
|
15 |
|
16 |
-
st.set_page_config(page_title = "QnA_Project Using OpenAI")
|
17 |
st.header("Langchain Application using OpenAI")
|
18 |
|
19 |
input = st.text_input("Input: ", key = "input")
|
|
|
13 |
return response
|
14 |
|
15 |
|
16 |
+
st.set_page_config(page_title = f"{os.getenv('OPEN_API_KEY')}QnA_Project Using OpenAI")
|
17 |
st.header("Langchain Application using OpenAI")
|
18 |
|
19 |
input = st.text_input("Input: ", key = "input")
|