Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -651,12 +651,13 @@ css = """
|
|
651 |
|
652 |
with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
653 |
gr.Markdown("<CENTER><h1 style='font-size: 22px; font-family: Calibri;'>RedMind GPT</h1></CENTER>")
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
|
|
660 |
with gr.Row():
|
661 |
sample_button = gr.Button("What is the expected receiving date and the status of ASN24081900001",elem_classes="gr-button")
|
662 |
sample_button1 = gr.Button("What are the active warehouses available",elem_classes="gr-button")
|
|
|
651 |
|
652 |
with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
653 |
gr.Markdown("<CENTER><h1 style='font-size: 22px; font-family: Calibri;'>RedMind GPT</h1></CENTER>")
|
654 |
+
with gr.Row():
|
655 |
+
m = gr.Markdown()
|
656 |
+
demo.load(update_message, None, m)
|
657 |
+
|
658 |
+
# Logout link styled as text link in the right corner
|
659 |
+
gr.Markdown("<div class='logout-link'><a href='/logout'>Logout</a></div>")
|
660 |
+
|
661 |
with gr.Row():
|
662 |
sample_button = gr.Button("What is the expected receiving date and the status of ASN24081900001",elem_classes="gr-button")
|
663 |
sample_button1 = gr.Button("What are the active warehouses available",elem_classes="gr-button")
|