-
Notifications
You must be signed in to change notification settings - Fork 15
/
prompts_starling.txt
68 lines (40 loc) · 3.08 KB
/
prompts_starling.txt
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
python main.py "retrieve one value: invoice number. format response as following {\"invoice_number\": {}}"
{'invoice_number': 61356291}
==================================================
Time to retrieve answer: 97.6245634490042
python main.py "retrieve one value: invoice date. format response as following {\"invoice_date\": {}}"
{'invoice_date': '09/06/2012'}
==================================================
Time to retrieve answer: 97.94699124002364
python main.py "retrieve three values: client name, complete address and tax ID. format response as following {\"client_name\": {},\"address\": {},\"tax_id\": {}}"
{'client_name': 'Rodriguez-Stevens', 'address': '2280 Angela Plain', 'tax_id': '939-98-8477'}
==================================================
Time to retrieve answer: 102.29442486795597
python main.py "retrieve three values: seller name, complete address and tax ID. format response as following {\"seller_name\": {},\"address\": {},\"tax_id\": {}}"
{'seller_name': 'Chapman, Kim and Green', 'address': '64731 James Branch, Smithmouth, NC 26872', 'tax_id': '949-84-9105'}
==================================================
Time to retrieve answer: 114.44599518104224
python main.py "retrieve one value: invoice iban. format response as following {\"invoice_iban\": {}}"
{'invoice_iban': 'GB50ACIE59715038217063'}
==================================================
Time to retrieve answer: 100.62414190900745
python main.py "retrieve two values: net price and gross worth for the second invoice item from the table. format response as following {\"net_price\": {},\"gross_worth\": {}}"
{'net_price': 123.55, 'gross_worth': 246.7}
==================================================
Time to retrieve answer: 103.98144886799855
python main.py "retrieve gross worth value for each invoice item from the table. format response as following {\"gross_worth\": []}"
{'gross_worth': [66.0, 123.55, 8.25, 14.29]}
==================================================
Time to retrieve answer: 99.5734898429946
python main.py "retrieve names of invoice items included into this invoice. format response as following {\"item_name\": []}"
{'item_name': ['Wine Glasses Goblets Pair Clear Glass', 'With Hooks Stemware Storage Multiple Uses Iron Wine Rack Hanging Glass', 'Replacement Corkscrew Parts Spiral Worm Wine Opener Bottle Houdini', 'HOME ESSENTIALS GRADIENT STEMLESS WINE GLASSES SET OF 4 20 FL OZ (591 ml) NEW']}
==================================================
Time to retrieve answer: 110.7761614319752
python main.py "retrieve invoice total info. use this format for the answer {\"invoice_total\": {}}"
{'invoice_total': 212.09}
==================================================
Time to retrieve answer: 102.51593980001053
python main.py "retrieve three values: total gross worth, invoice number and invoice date. use this format for the response {\"total_gross_worth\": {}, \"invoice_number\": {}, \"invoice_date\": {}}"
{'total_gross_worth': 212.09, 'invoice_number': 61356291, 'invoice_date': '09/06/2012'}
==================================================
Time to retrieve answer: 109.37831377796829