Update README.md
Browse filesadded example to widget
README.md
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
# Doc / guide: https://huggingface.co/docs/hub/model-cards
|
4 |
|
5 |
widget:
|
6 |
-
- text: "
|
7 |
example_title: "Example1"
|
8 |
-
- text: "
|
9 |
example_title: "Example2"
|
10 |
-
- text: "
|
11 |
example_title: "Example3"
|
12 |
---
|
13 |
|
|
|
3 |
# Doc / guide: https://huggingface.co/docs/hub/model-cards
|
4 |
|
5 |
widget:
|
6 |
+
- text: "sql_prompt: What is the monthly voice usage for each customer in the Mumbai region? sql_context: CREATE TABLE customers (customer_id INT, name VARCHAR(50), voice_usage_minutes FLOAT, region VARCHAR(50)); INSERT INTO customers (customer_id, name, voice_usage_minutes, region) VALUES (1, 'Aarav Patel', 500, 'Mumbai'), (2, 'Priya Shah', 700, 'Mumbai');"
|
7 |
example_title: "Example1"
|
8 |
+
- text: "sql_prompt: How many wheelchair accessible vehicles are there in the 'Train' mode of transport? sql_context: CREATE TABLE Vehicles(vehicle_id INT, vehicle_type VARCHAR(20), mode_of_transport VARCHAR(20), is_wheelchair_accessible BOOLEAN); INSERT INTO Vehicles(vehicle_id, vehicle_type, mode_of_transport, is_wheelchair_accessible) VALUES (1, 'Train_Car', 'Train', TRUE), (2, 'Train_Engine', 'Train', FALSE), (3, 'Bus', 'Bus', TRUE);"
|
9 |
example_title: "Example2"
|
10 |
+
- text: "sql_prompt: Which economic diversification efforts in the 'diversification' table have a higher budget than the average budget for all economic diversification efforts in the 'budget' table? sql_context: CREATE TABLE diversification (id INT, effort VARCHAR(50), budget FLOAT); CREATE TABLE budget (diversification_id INT, diversification_effort VARCHAR(50), amount FLOAT);"
|
11 |
example_title: "Example3"
|
12 |
---
|
13 |
|