Redmind commited on
Commit
3ca0660
·
verified ·
1 Parent(s): d032ca3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -722,16 +722,16 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:#css=css) as demo:
722
  gr.Markdown("<CENTER><h1 style='font-size: 22px; font-family: Calibri;'>RedMind GPT</h1></CENTER>")
723
  m=gr.Markdown()
724
  demo.load(update_message, None, m)
725
- logout_button = gr.Button("Logout", link="/logout",elem_classes="logout-link")
726
  with gr.Row():
727
- sample_button = gr.Button("What is the expected receiving date and the status of ASN24081900001", elem_classes="custom-button" , elem_id="button1")
728
- sample_button1 = gr.Button("What are the active warehouses available", elem_classes="custom-button", elem_id="button2")
729
- sample_button2 = gr.Button("Explain Pre-Receiving Yard Management", elem_classes="custom-button", elem_id="button3")
730
- sample_button3 = gr.Button("Can you generate a pie chart with item names and quantities in warehouse WH", elem_classes="custom-button", elem_id="button4")
731
- sample_button4 = gr.Button("I want to analyze item name and quantity for different custmers in a stacked bar chart for the warehouse WH", elem_classes="custom-button", elem_id="button5", visible=False)
732
 
733
  with gr.Row():
734
- chatbot = gr.Chatbot(elem_classes="gr-chatbot",
735
  label="Ask a question about the API, Database, a Document or Warehouse inventory analysis.") # .style(color_map=["blue","grey","red"])
736
 
737
 
 
722
  gr.Markdown("<CENTER><h1 style='font-size: 22px; font-family: Calibri;'>RedMind GPT</h1></CENTER>")
723
  m=gr.Markdown()
724
  demo.load(update_message, None, m)
725
+ logout_button = gr.Button("Logout", link="/logout")
726
  with gr.Row():
727
+ sample_button = gr.Button("What is the expected receiving date and the status of ASN24081900001")
728
+ sample_button1 = gr.Button("What are the active warehouses available")
729
+ sample_button2 = gr.Button("Explain Pre-Receiving Yard Management")
730
+ sample_button3 = gr.Button("Can you generate a pie chart with item names and quantities in warehouse WH")
731
+ sample_button4 = gr.Button("I want to analyze item name and quantity for different custmers in a stacked bar chart for the warehouse WH", visible=False)
732
 
733
  with gr.Row():
734
+ chatbot = gr.Chatbot(
735
  label="Ask a question about the API, Database, a Document or Warehouse inventory analysis.") # .style(color_map=["blue","grey","red"])
736
 
737