Spaces:
Sleeping
Sleeping
Ley_Fill7
commited on
Commit
·
4836ef4
1
Parent(s):
e6bd0df
Added the example json file with customer data
Browse files- example.json +31 -0
example.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"customer": {
|
3 |
+
"name": "Phil Kip",
|
4 |
+
"company": "Sycular",
|
5 |
+
"position": "CTO",
|
6 |
+
"email": "[email protected]"
|
7 |
+
},
|
8 |
+
"product": {
|
9 |
+
"name": "NVIDIA H200 GPUs",
|
10 |
+
"features": ["141GB of HBM3e Memory", "4.8 TB/s Memory Bandwidth", "Enhanced AI and HPC Performance"],
|
11 |
+
"benefits": ["Accelerated Generative AI and LLMs", "Improved Energy Efficiency", "Faster Scientific Computing"]
|
12 |
+
},
|
13 |
+
"sequence": [
|
14 |
+
{
|
15 |
+
"day": 1,
|
16 |
+
"subject": "1st Email - Introducing you to NVIDIA H200 GPUs Public Beta",
|
17 |
+
"template": "\n\nHi {name},\n\nI wanted to introduce you to the new and much waited {product_name}, particularly its key feature: '{features[0]}' which can help you with {benefits[0]}. Sign up for the public preview beta and try it out!\n\nBest regards,\nNVIDIA"
|
18 |
+
},
|
19 |
+
{
|
20 |
+
"day": 2,
|
21 |
+
"subject": "2nd Email - Follow-up on NVIDIA H200 GPUs Public Beta",
|
22 |
+
"template": "\n\nHi {name},\n\nJust checking in to see if you had a chance to look at {product_name} and its feature of '{features[0]}'. Today I am following up with another cool feature: '{features[1]}' which can help you with {benefits[1]}. Try this out as well!\n\nBest Regards,\nNVIDIA"
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"day": 3,
|
26 |
+
"subject": "3rd Email - Final Reminder about NVIDIA H200 GPUs Public Beta",
|
27 |
+
"template": "\n\nHi {name},\n\nI just wanted to send one last reminder about {product_name} which is currently still on public beta. Don't miss out on another cool feature: '{features[2]}' which is best for {benefits[2]}. Try it out before the beta window lapses!\n\nBest Regards,\nNVIDIA"
|
28 |
+
}
|
29 |
+
]
|
30 |
+
}
|
31 |
+
|