Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -628,7 +628,7 @@ css = """
|
|
| 628 |
}
|
| 629 |
|
| 630 |
.gr-button:hover {
|
| 631 |
-
background-color: #
|
| 632 |
}
|
| 633 |
|
| 634 |
/* Customizing the Logout link to be on the right */
|
|
@@ -662,7 +662,7 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
| 662 |
sample_button1 = gr.Button("What are the active warehouses available",elem_classes="gr-button")
|
| 663 |
sample_button2 = gr.Button("Explain Pre-Receiving Yard Management",elem_classes="gr-button")
|
| 664 |
sample_button3 = gr.Button("Can you generate a pie chart with item names and quantities in warehouse WH",elem_classes="gr-button")
|
| 665 |
-
sample_button4 = gr.Button("I want to analyze item name and quantity for different customers in a stacked bar chart for the warehouse WH",
|
| 666 |
|
| 667 |
with gr.Row():
|
| 668 |
chatbot = gr.Chatbot(label="Ask a question about the API, Database, a Document or Warehouse inventory analysis.")
|
|
|
|
| 628 |
}
|
| 629 |
|
| 630 |
.gr-button:hover {
|
| 631 |
+
background-color: #0056b3; /* Darker shade on hover */
|
| 632 |
}
|
| 633 |
|
| 634 |
/* Customizing the Logout link to be on the right */
|
|
|
|
| 662 |
sample_button1 = gr.Button("What are the active warehouses available",elem_classes="gr-button")
|
| 663 |
sample_button2 = gr.Button("Explain Pre-Receiving Yard Management",elem_classes="gr-button")
|
| 664 |
sample_button3 = gr.Button("Can you generate a pie chart with item names and quantities in warehouse WH",elem_classes="gr-button")
|
| 665 |
+
sample_button4 = gr.Button("I want to analyze item name and quantity for different customers in a stacked bar chart for the warehouse WH", elem_classes="gr-button")
|
| 666 |
|
| 667 |
with gr.Row():
|
| 668 |
chatbot = gr.Chatbot(label="Ask a question about the API, Database, a Document or Warehouse inventory analysis.")
|