Commit 929dee7d by Hyder

added footer and edited logo

parent bd3b2783
...@@ -51,10 +51,14 @@ def configure_openai_api_key(): ...@@ -51,10 +51,14 @@ def configure_openai_api_key():
image = Image.open("DSD logo.png") image = Image.open("DSD logo.png")
# Resize the image # Resize the image
new_image = image.resize((300, 250)) new_image = image.resize((300, 300))
# Display the resized image in the sidebar # Display the resized image in the sidebar
st.sidebar.image(new_image, width=300) st.sidebar.image(new_image, width=300)
st.sidebar.markdown(
"#### <a href='https://datasciencedojo.com/' style='color:light-blue;'>Powered by Data Science Dojo</a>",
unsafe_allow_html=True
)
openai_api_key = st.sidebar.text_input( openai_api_key = st.sidebar.text_input(
label="OpenAI API Key", label="OpenAI API Key",
type="password", type="password",
...@@ -62,10 +66,11 @@ def configure_openai_api_key(): ...@@ -62,10 +66,11 @@ def configure_openai_api_key():
placeholder="sk-..." placeholder="sk-..."
) )
if openai_api_key: if openai_api_key:
st.session_state['OPENAI_API_KEY'] = openai_api_key st.session_state['OPENAI_API_KEY'] = openai_api_key
os.environ['OPENAI_API_KEY'] = openai_api_key os.environ['OPENAI_API_KEY'] = openai_api_key
else: else:
st.error("Please add your OpenAI API key to continue.") st.error("Please add your OpenAI API key to continue.")
st.stop() st.stop()
return openai_api_key return openai_api_key
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment