Update app.py
Browse files
app.py
CHANGED
|
@@ -26,12 +26,6 @@ st.set_page_config(page_title="🐶 DUBSChat", layout="wide")
|
|
| 26 |
with open("logo_component.html", "r") as f:
|
| 27 |
html_content = f.read()
|
| 28 |
|
| 29 |
-
# Update the `logo_url` in the HTML content dynamically
|
| 30 |
-
logo_path = "/home/user/app/Problems.png" # Replace with your static path or a URL
|
| 31 |
-
html_content = html_content.replace("{{ logo_url }}", logo_path)
|
| 32 |
-
|
| 33 |
-
# Embed the HTML
|
| 34 |
-
st.components.v1.html(html_content, height=300)
|
| 35 |
|
| 36 |
|
| 37 |
# Utility Functions
|
|
|
|
| 26 |
with open("logo_component.html", "r") as f:
|
| 27 |
html_content = f.read()
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
|
| 31 |
# Utility Functions
|