Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -42,6 +42,10 @@ def convert_svg_to_png(svg_file):
|
|
42 |
def main():
|
43 |
st.title("Generate Diagrams using GPT-4 and MermaidFlow")
|
44 |
|
|
|
|
|
|
|
|
|
45 |
# Display sample prompt
|
46 |
with st.expander("Sample Prompt For Users"):
|
47 |
st.markdown("""
|
|
|
42 |
def main():
|
43 |
st.title("Generate Diagrams using GPT-4 and MermaidFlow")
|
44 |
|
45 |
+
# Display a logo or icon
|
46 |
+
image = Image.open("11.png") # Path to your image file
|
47 |
+
st.image(image, width=400) # You can adjust the width as needed
|
48 |
+
|
49 |
# Display sample prompt
|
50 |
with st.expander("Sample Prompt For Users"):
|
51 |
st.markdown("""
|