Update app.py
Browse files
app.py
CHANGED
@@ -402,6 +402,10 @@ if openai_api_key:
|
|
402 |
# Display a description or instructions
|
403 |
st.write("Click the button below to go to the Voice Chat.")
|
404 |
|
|
|
|
|
|
|
|
|
405 |
# Button to navigate to the external voice chat link
|
406 |
if st.button("Go to Voice Chat"):
|
407 |
st.write("Redirecting to the voice chat...") # You can customize this message
|
|
|
402 |
# Display a description or instructions
|
403 |
st.write("Click the button below to go to the Voice Chat.")
|
404 |
|
405 |
+
# Display image/logo in the "Physics Assistant" section (optional)
|
406 |
+
gif = Image.open("200w.gif") # Ensure the file is in the correct directory
|
407 |
+
st.image(gif, width=150) # Adjust the size as per preference
|
408 |
+
|
409 |
# Button to navigate to the external voice chat link
|
410 |
if st.button("Go to Voice Chat"):
|
411 |
st.write("Redirecting to the voice chat...") # You can customize this message
|