Spaces:
Sleeping
Sleeping
update examples
Browse files
app.py
CHANGED
@@ -126,12 +126,12 @@ def load_orders_dataset():
|
|
126 |
return df
|
127 |
|
128 |
example_inputs = [
|
129 |
-
"Can you
|
130 |
-
"
|
131 |
-
"
|
|
|
132 |
"I need to cancel Order ID...",
|
133 |
"I lost my phone and need to update my contact information. My user id is...",
|
134 |
-
"I need to confirm my current user info and order status. My email is...",
|
135 |
]
|
136 |
|
137 |
# Create Gradio App
|
@@ -147,7 +147,7 @@ with app:
|
|
147 |
with gr.Row():
|
148 |
with gr.Column():
|
149 |
msg = gr.Textbox(label="Your message")
|
150 |
-
gr.Markdown("β¬οΈ checkout the *Customers* and *Orders* tabs above π for sample email addresses, order ids, etc
|
151 |
examples = gr.Examples(
|
152 |
examples=example_inputs,
|
153 |
inputs=msg
|
|
|
126 |
return df
|
127 |
|
128 |
example_inputs = [
|
129 |
+
"Can you confirm my username? My email is [email protected].",
|
130 |
+
"Can you send me a list of my recent orders? My phone number is 222-333-4444.",
|
131 |
+
"I need to confirm my current user info and order status. My username is liamn.",
|
132 |
+
"I'm checking on the status of an order, the order id is 74651.",
|
133 |
"I need to cancel Order ID...",
|
134 |
"I lost my phone and need to update my contact information. My user id is...",
|
|
|
135 |
]
|
136 |
|
137 |
# Create Gradio App
|
|
|
147 |
with gr.Row():
|
148 |
with gr.Column():
|
149 |
msg = gr.Textbox(label="Your message")
|
150 |
+
gr.Markdown("β¬οΈ checkout the *Customers* and *Orders* tabs above π for sample email addresses, order ids, etc.")
|
151 |
examples = gr.Examples(
|
152 |
examples=example_inputs,
|
153 |
inputs=msg
|