-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathtwo-shot-2.txt
22 lines (19 loc) · 908 Bytes
/
two-shot-2.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Given the two examples below, extract the names, addresses, and email addresses of individuals mentioned later as Process Text. Format the extracted information in JSON, with keys for "name", "address", and "email". If any information is missing, use "null" for that field. Be very concise in your output by providing only the output JSON.
Example 1:
Text: "John Doe lives at 1234 Maple Street, Springfield. His email is [email protected]."
Output:
{
"name": "John Doe",
"address": "1234 Maple Street, Springfield",
"email": "[email protected]"
}
Example 2:
Text: "Jane Smith has recently moved to 5678 Oak Avenue, Anytown. She hasn't updated her email yet."
Output:
{
"name": "Jane Smith",
"address": "5678 Oak Avenue, Anytown",
"email": null
}
Process Text: "Mark Johnson enjoys living in Berkeley California at 102 Dunston Street and use [email protected] for contacting him."
Output: