SwastikM commited on
Commit
a72b0bf
1 Parent(s): e29c0bd

Update README.md

Browse files

added example to widget

Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -3,11 +3,11 @@
3
  # Doc / guide: https://huggingface.co/docs/hub/model-cards
4
 
5
  widget:
6
- - text: "Is this review positive or negative? Review: Best cast iron skillet you will ever buy."
7
  example_title: "Example1"
8
- - text: "Barack Obama nominated Hilary Clinton as his secretary of state on Monday. He chose her because she had ..."
9
  example_title: "Example2"
10
- - text: "On a shelf, there are five books: a gray book, a red book, a purple book, a blue book, and a black book ..."
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