File size: 1,435 Bytes
e994bee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[
    {
        "text": "Give me a 4-room apartment in New York City on the 6th floor.",
        "label": "SELECT * FROM table WHERE room = 4 AND floor = 6 AND city = 'New York'"
    },
    {
        "text": "I'm looking for a 2-bedroom apartment in San Francisco with a balcony.",
        "label": "SELECT * FROM table WHERE room = 2 AND city = 'San Francisco'"
    },
    {
        "text": "I need a studio apartment in London with a washer and dryer in unit.",
        "label": "SELECT * FROM table WHERE room = 1 AND city = 'London'"
    },
    {
        "text": "I'm interested in a 3-bedroom apartment in Chicago with a parking space.",
        "label": "SELECT * FROM table WHERE room = 3 AND parking = 1 AND city = 'Chicago'"
    },
    {
        "text": "I'm looking for a 1-bedroom apartment in Austin with a pet-friendly policy.",
        "label": "SELECT * FROM table WHERE room = 1 AND city = 'Austin'"
    },
    {
        "text": "I need a 2-bedroom apartment in Seattle with a view.",
        "label": "SELECT * FROM table WHERE room = 2 AND city = 'Seattle'"
    },
    {
        "text": "I'm interested in a 3-bedroom apartment in Denver with a backyard.",
        "label": "SELECT * FROM table WHERE room = 3 AND city = 'Denver'"
    },
    {
        "text": "I'm looking for a 1-bedroom apartment in Boston with a gym in building.",
        "label": "SELECT * FROM table WHERE room = 1 AND city = 'Boston'"
    }
]