forked from enescingoz/awesome-n8n-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConversational Interviews with AI Agents and n8n Forms.json
More file actions
1254 lines (1254 loc) · 39.3 KB
/
Copy pathConversational Interviews with AI Agents and n8n Forms.json
File metadata and controls
1254 lines (1254 loc) · 39.3 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"nodes": [
{
"id": "d73e5113-119f-4e62-9872-48e6a971d760",
"name": "Stop Interview?",
"type": "n8n-nodes-base.if",
"position": [
3380,
920
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "3cf788a6-94d0-4223-9caa-30b8e4df8e01",
"operator": {
"type": "boolean",
"operation": "true",
"singleValue": true
},
"leftValue": "={{ $json.output.stop_interview }}",
"rightValue": ""
}
]
}
},
"typeVersion": 2.2
},
{
"id": "cda3c487-97fa-4037-b9a0-0802f4a02727",
"name": "Generate Row",
"type": "n8n-nodes-base.set",
"position": [
3740,
1200
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "06146a75-b67a-42cf-aa6f-241f23c47b9a",
"name": "timestamp",
"type": "string",
"value": "={{ $now.toISO() }}"
},
{
"id": "b0278c64-58a7-487d-b7ba-d102fb5d4a0c",
"name": "type",
"type": "string",
"value": "next_question"
},
{
"id": "ba034ca1-408e-422f-b071-dab0ef12fb48",
"name": "question",
"type": "string",
"value": "={{ $('Parse Response').item.json.output.question }}"
},
{
"id": "a2231f6e-f507-408e-b598-53888cf8d4b5",
"name": "answer",
"type": "string",
"value": "={{ $('Get Answer').item.json.answer }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "3486f9ae-6a19-4f1f-be46-15376053e71f",
"name": "Generate Row1",
"type": "n8n-nodes-base.set",
"position": [
3580,
760
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "06146a75-b67a-42cf-aa6f-241f23c47b9a",
"name": "timestamp",
"type": "string",
"value": "={{ $now.toISO() }}"
},
{
"id": "b0278c64-58a7-487d-b7ba-d102fb5d4a0c",
"name": "type",
"type": "string",
"value": "stop_interview"
},
{
"id": "ba034ca1-408e-422f-b071-dab0ef12fb48",
"name": "question",
"type": "string",
"value": "=None"
},
{
"id": "a2231f6e-f507-408e-b598-53888cf8d4b5",
"name": "answer",
"type": "string",
"value": "=None"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "a0e5d40d-e956-4ded-891f-ce5d0f55935f",
"name": "Clear For Next Interview",
"type": "@n8n/n8n-nodes-langchain.memoryManager",
"position": [
3900,
760
],
"parameters": {
"mode": "delete",
"deleteMode": "all"
},
"typeVersion": 1.1
},
{
"id": "66a33fcb-a902-4159-a025-2dff426c1fce",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
2580,
860
],
"parameters": {
"width": 180,
"height": 260,
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### 🚨 Set Interview Topic Here!"
},
"typeVersion": 1
},
{
"id": "5cfb7114-a773-4c76-bb3b-7c004be5f799",
"name": "Send Reply To Agent",
"type": "n8n-nodes-base.set",
"position": [
4060,
1200
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "06a9c730-4756-4bc8-a394-6ff249cf7117",
"name": "answer",
"type": "string",
"value": "={{ $('Get Answer').item.json.answer }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "aa30c462-7dfa-40a7-8e63-bed29b30213c",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1880,
1060
],
"parameters": {
"color": 7,
"width": 490,
"height": 220,
"content": "## 1. Setup Interview\n[Learn more about the form trigger node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger)\n\nThe form trigger node will be our entry point into this workflow and to start, we'll just ask for the user's name to start the interview.\nOur session storage will be using Redis via Upstash.com (you can use regular redis btw!) - whichever way, this ensures a highly scalable system able to handle many users."
},
"typeVersion": 1
},
{
"id": "5353a7c8-d0e4-429a-ab68-c54d9b845a43",
"name": "Start Interview",
"type": "n8n-nodes-base.formTrigger",
"position": [
1880,
880
],
"webhookId": "8d849295-ed30-41ab-a17c-464227cec8fb",
"parameters": {
"options": {
"path": "driving-lessons-survey",
"ignoreBots": true,
"buttonLabel": "Begin Interview!",
"appendAttribution": true,
"useWorkflowTimezone": true
},
"formTitle": "=UK Practical Driving Test Satisfaction Interview",
"formFields": {
"values": [
{
"fieldLabel": "What is your name?",
"placeholder": "ie. Sam Smith",
"requiredField": true
}
]
},
"responseMode": "lastNode",
"formDescription": "=Thanks for taking part in our Interview. You will be presented with an unending series of questions to help us with your experiences in preparing for and taking the UK Practical Driving Test.\n\nThe interviewer is an AI agent and the questions are dynamically generated. When you're done with answer, simple say STOP to exit the interview. Sessions are deleted after 24 hours."
},
"typeVersion": 2.2
},
{
"id": "c88a829f-c4b4-4ad4-b121-32b15fae9980",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
2840,
600
],
"parameters": {
"color": 7,
"width": 614,
"height": 280,
"content": "## 2. AI Researcher for Endless Interview Questions\n[Learn more about the AI Agent node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nAn AI interviewer is an interesting take on a role traditionally understood as expensive and time-consuming - both in preparation and execution. What if this could be handed off to an AI/LLM, which could perform when it suits the interviewee and ask a never-ending list of open and follow-on questions for deeper insights?\n\nThis is what this AI researcher agent is designed to do! Upon activation, a loop is created where the agent generates the question and the user answers via the form node. This continues until the user asks to stop the interview."
},
"typeVersion": 1
},
{
"id": "10e5dbe0-0163-4c21-8811-9ce9a2a5063b",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
3580,
1380
],
"parameters": {
"color": 7,
"width": 580,
"height": 202,
"content": "## 3. Record Answers and Prep for Next Question\n[Learn more about the n8n Form node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.form/)\n\nThe interview is no good if we can't record the answers somewhere for later analysis! Using n8n form node to capture the answer, we can simple push our new question and answer pair to our Redis session to build our transcript before continuing the loop with the agent."
},
"typeVersion": 1
},
{
"id": "0a0cc961-d364-40d2-9ece-cef7d17c4b45",
"name": "Sticky Note4",
"type": "n8n-nodes-base.stickyNote",
"position": [
3820,
460
],
"parameters": {
"color": 7,
"width": 528,
"height": 253,
"content": "## 4. Graciously End the Interview\n[Read more about the Chat Manager node](https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager/)\n\nOnce the AI/LLM detects the user wishes to end the interview (which is done by the user explicitly saying in the form), then the loop breaks and we conclude the interview session and displaying the confirmation screen.\n\nFor this demo, I've created a special confirmation screen which also displays the transcript. This is done by redirecting to a webhook URL. If you don't need this, feel free to change this to \"show completion screen\" instead.\n"
},
"typeVersion": 1
},
{
"id": "279d9a67-1d3b-4ffe-a152-33164ef9e2c8",
"name": "Get Answer",
"type": "n8n-nodes-base.form",
"position": [
3580,
1200
],
"webhookId": "d96bb88d-db84-4a68-8f02-bcff9cb8429e",
"parameters": {
"options": {
"formTitle": "={{ $json.output.question }}",
"buttonLabel": "Next Question",
"formDescription": "Please answer the question or type \"stop interview\" to end the interview."
},
"formFields": {
"values": [
{
"fieldType": "textarea",
"fieldLabel": "answer",
"requiredField": true
}
]
}
},
"typeVersion": 1
},
{
"id": "4e284505-afc3-4e3e-88c8-38021efbf3c1",
"name": "Sticky Note5",
"type": "n8n-nodes-base.stickyNote",
"position": [
1280,
500
],
"parameters": {
"width": 522.6976744186048,
"height": 787.6241860465118,
"content": "## Try it out! \n\n### Conducting user interviews have been traditionally difficult due to preparation, timing and execution costs. What if we let an AI/LLM do it instead?\n\nThis template enables automated AI/LLM powered user interviews using n8n forms and an AI agent where the question and answers are recorded in a google sheet for later analysis. A powerful tool for any researcher.\n\n### Check out the full showcase post here: https://community.n8n.io/t/build-your-own-ai-interview-agents-with-n8n-forms/62312\n\n### How it works\n* A form trigger is used to start the interview and a new session is created in redis to capture the transcript.\n* An AI agent is then tasked to ask questions to the user regarding the topic of the interview. This is setup as a loop so the questions never stop unless the user wishes to end the interview.\n* Each answer is recorded in our session set up earlier between questions.\n* Finally, when the user requests to end the interview we break the loop and show the interview completion screen.\n\n### Why Redis?\nRedis is a fast key-value datastore which makes it ideal for sessions. This ensures the interview flow stays snappy between questions. For my live demo, I used Upstash.com which has a generous free tier.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!\n"
},
"typeVersion": 1
},
{
"id": "ff37e943-851f-4ea7-bcab-b33150881b72",
"name": "Set Interview Topic",
"type": "n8n-nodes-base.set",
"position": [
2620,
880
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "386f91e1-cc3e-4912-84e3-5ecdbf5412c8",
"name": "answer",
"type": "string",
"value": "=Hello, my name is {{ $('Start Interview').first().json['What is your name?'] }}"
},
{
"id": "492d5ecc-4e76-4297-b8a7-9ca4f801c855",
"name": "interview_topic",
"type": "string",
"value": "Your experience preparing for and taking the UK practical driving test"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "446937bc-a599-4184-b52e-be0607d62d94",
"name": "UUID",
"type": "n8n-nodes-base.crypto",
"position": [
2020,
880
],
"parameters": {
"action": "generate"
},
"typeVersion": 1
},
{
"id": "da94c22a-4b26-4898-bde8-b57b5bf01f15",
"name": "Generate Row2",
"type": "n8n-nodes-base.set",
"position": [
2300,
880
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "06146a75-b67a-42cf-aa6f-241f23c47b9a",
"name": "timestamp",
"type": "string",
"value": "={{ $now.toISO() }}"
},
{
"id": "b0278c64-58a7-487d-b7ba-d102fb5d4a0c",
"name": "type",
"type": "string",
"value": "start_interview"
},
{
"id": "ba034ca1-408e-422f-b071-dab0ef12fb48",
"name": "question",
"type": "string",
"value": "=What is your name?"
},
{
"id": "a2231f6e-f507-408e-b598-53888cf8d4b5",
"name": "answer",
"type": "string",
"value": "={{ $('Start Interview').first().json['What is your name?'] }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "9aba23d7-04af-4478-b39b-417f0917597d",
"name": "Create Session",
"type": "n8n-nodes-base.redis",
"position": [
2160,
880
],
"parameters": {
"key": "=session_{{ $('UUID').item.json.data }}",
"ttl": "={{ 60 * 60 * 24 }}",
"value": "={{ [] }}",
"expire": true,
"keyType": "list",
"operation": "set"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"typeVersion": 1
},
{
"id": "217c9866-a162-41c6-b123-189869a6cb58",
"name": "Update Session",
"type": "n8n-nodes-base.redis",
"position": [
2440,
880
],
"parameters": {
"list": "=session_{{ $('UUID').first().json.data }}",
"tail": true,
"operation": "push",
"messageData": "={{ $json.toJsonString() }}"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"typeVersion": 1
},
{
"id": "95e8b7c4-4f27-49f3-b509-5238c0f7bd5d",
"name": "Update Session1",
"type": "n8n-nodes-base.redis",
"position": [
3900,
1200
],
"parameters": {
"list": "=session_{{ $('UUID').first().json.data }}",
"tail": true,
"operation": "push",
"messageData": "={{ $json.toJsonString() }}"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"typeVersion": 1
},
{
"id": "afaa55dd-844e-4bf3-8a31-3a0953caaf69",
"name": "Update Session2",
"type": "n8n-nodes-base.redis",
"position": [
3740,
760
],
"parameters": {
"list": "=session_{{ $('UUID').first().json.data }}",
"tail": true,
"operation": "push",
"messageData": "={{ $json.toJsonString() }}"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"typeVersion": 1
},
{
"id": "c381d598-1902-4789-ac15-65ac2124fbdd",
"name": "Valid Session?",
"type": "n8n-nodes-base.if",
"position": [
5080,
1240
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "500d6ca9-2a04-40f0-98e8-aa4290e6a30d",
"operator": {
"type": "array",
"operation": "exists",
"singleValue": true
},
"leftValue": "={{ $json.data }}",
"rightValue": ""
}
]
}
},
"typeVersion": 2.2
},
{
"id": "f26ccdaa-4f94-4acb-894b-341648aee8b0",
"name": "Respond to Webhook",
"type": "n8n-nodes-base.respondToWebhook",
"position": [
5440,
1240
],
"parameters": {
"options": {
"responseCode": 200,
"responseHeaders": {
"entries": [
{
"name": "Content-Type",
"value": "text/html"
}
]
}
},
"respondWith": "text",
"responseBody": "={{ $json.html }}"
},
"typeVersion": 1.1
},
{
"id": "09a05dc6-4a21-4df0-a83d-5e1b986090f8",
"name": "Window Buffer Memory2",
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
"position": [
3000,
1120
],
"parameters": {
"sessionKey": "={{ $('UUID').first().json.data }}",
"sessionIdType": "customKey"
},
"typeVersion": 1.2
},
{
"id": "26f87c7d-9e2c-41e8-b7eb-3c249a69f905",
"name": "Window Buffer Memory",
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
"position": [
3900,
920
],
"parameters": {
"sessionKey": "={{ $('UUID').first().json.data }}",
"sessionIdType": "customKey"
},
"typeVersion": 1.2
},
{
"id": "ab891c71-af03-49c9-b281-d0058374260b",
"name": "Sticky Note6",
"type": "n8n-nodes-base.stickyNote",
"position": [
4180,
740
],
"parameters": {
"width": 276.4353488372094,
"height": 320.31553488372094,
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### 🚨 Set Your Webhook URL here!\nFor this demo, we want to show a customised completion screen with transcript so it's necessary to redirect to a webhook (see step 6)."
},
"typeVersion": 1
},
{
"id": "7a063851-1bea-4e34-897c-4038d08b845e",
"name": "Redirect to Completion Screen",
"type": "n8n-nodes-base.form",
"position": [
4260,
760
],
"webhookId": "9fdedf1b-e413-4fc3-94a4-9cc24bffff8a",
"parameters": {
"operation": "completion",
"redirectUrl": "=https://<host>/webhook/<uuid-if-using-n8n-cloud>/ai-interview-transcripts/{{ $('UUID').first().json.data }}",
"respondWith": "redirect"
},
"typeVersion": 1
},
{
"id": "b67b3fa5-faf6-402b-9b9e-c783869770ca",
"name": "Sticky Note7",
"type": "n8n-nodes-base.stickyNote",
"position": [
4640,
1220
],
"parameters": {
"color": 5,
"width": 236.3564651162793,
"height": 345.82027906976737,
"content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### 🚨 This is the webhook we want to redirect to!\nIf you're on n8n cloud, you may want to copy the webhook url generated here and use it as the form ending's redirect url."
},
"typeVersion": 1
},
{
"id": "583d1572-2d6f-4ca4-9e31-33dc1481e87a",
"name": "Sticky Note8",
"type": "n8n-nodes-base.stickyNote",
"position": [
4580,
980
],
"parameters": {
"color": 7,
"width": 588,
"height": 207,
"content": "## 6. Display the Transcript\n[Read more about the Webhook Trigger](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook)\n\nThis step is totally optional. For a nicer user experience, I use this webhook mini-flow to display the user's transcript for the completion screen. It works by capturing the session_id in the webhook's url and searching for it in our redis database. If a match is found the transcript is fetched and rendered into a webpage using the HTML node and returned to the user. If no match is found, a 404 message is displayed instead."
},
"typeVersion": 1
},
{
"id": "5fcf86b9-3fa3-48f5-a4a4-a1e261a48b49",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
4700,
1240
],
"webhookId": "78df12c4-ccd0-46dd-be0d-4445c2bd04f2",
"parameters": {
"path": "ai-interview-transcripts/:session_id",
"options": {
"ignoreBots": true
},
"responseMode": "responseNode"
},
"typeVersion": 2
},
{
"id": "6df57307-feef-4be5-861d-fdc0b92d1ef6",
"name": "404 Not Found",
"type": "n8n-nodes-base.html",
"position": [
5260,
1320
],
"parameters": {
"html": "\n<html lang='en'>\n\n\t<head>\n\t\t<meta charset='UTF-8' />\n\t\t<meta name='viewport' content='width=device-width, initial-scale=1.0' />\n\t\t<link rel='icon' type='image/png' href='https://n8n.io/favicon.ico' />\n\t\t<link\n\t\t\thref='https://fonts.googleapis.com/css?family=Open+Sans'\n\t\t\trel='stylesheet'\n\t\t\ttype='text/css'\n\t\t/>\n\n\t\t<title>Driving Practice Test 2024 Survey</title>\n\n\t\t<style>\n\t\t\t*, ::after, ::before { box-sizing: border-box; margin: 0; padding: 0; } body { font-family:\n\t\t\tOpen Sans, sans-serif; font-weight: 400; font-size: 12px; display: flex; flex-direction:\n\t\t\tcolumn; justify-content: start; background-color: #FBFCFE; } .container { margin: auto;\n\t\t\ttext-align: center; padding-top: 24px; width: 448px; } .card { padding: 24px;\n\t\t\tbackground-color: white; border: 1px solid #DBDFE7; border-radius: 8px; box-shadow: 0px 4px\n\t\t\t16px 0px #634DFF0F; margin-bottom: 16px; } .n8n-link a { color: #7E8186; font-weight: 600;\n\t\t\tfont-size: 12px; text-decoration: none; } .n8n-link svg { display: inline-block;\n\t\t\tvertical-align: middle; } .header h1 { color: #525356; font-size: 20px; font-weight: 400;\n\t\t\tpadding-bottom: 8px; } .header p { color: #7E8186; font-size: 14px; font-weight: 400; }\n\t\t</style>\n\t</head>\n\n\t<body>\n\t\t<div class='container'>\n\t\t\t<section>\n\t\t\t\t<div class='card'>\n\t\t\t\t\t<div class='header'>\n\t\t\t\t\t\t<h1>404 Not Found</h1>\n\t\t\t\t\t\t<p>The requested session does not exist.</p>\n <p>Your session may have expired.</p>\n </div>\n\t\t\t\t</div>\n\t\t\t\t\t<div class='n8n-link'>\n\t\t\t\t\t\t<a href=\"https://n8n.partnerlinks.io/ee7izbliiw0n\" target='_blank'>\n\t\t\t\t\t\t\tForm automated with\n\t\t\t\t\t\t\t<svg\n\t\t\t\t\t\t\t\twidth='73'\n\t\t\t\t\t\t\t\theight='20'\n\t\t\t\t\t\t\t\tviewBox='0 0 73 20'\n\t\t\t\t\t\t\t\tfill='none'\n\t\t\t\t\t\t\t\txmlns='http://www.w3.org/2000/svg'\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tfill-rule='evenodd'\n\t\t\t\t\t\t\t\t\tclip-rule='evenodd'\n\t\t\t\t\t\t\t\t\td='M40.2373 4C40.2373 6.20915 38.4464 8 36.2373 8C34.3735 8 32.8074 6.72525 32.3633 5H26.7787C25.801 5 24.9666 5.70685 24.8059 6.6712L24.6415 7.6576C24.4854 8.59415 24.0116 9.40925 23.3417 10C24.0116 10.5907 24.4854 11.4058 24.6415 12.3424L24.8059 13.3288C24.9666 14.2931 25.801 15 26.7787 15H28.3633C28.8074 13.2747 30.3735 12 32.2373 12C34.4464 12 36.2373 13.7908 36.2373 16C36.2373 18.2092 34.4464 20 32.2373 20C30.3735 20 28.8074 18.7253 28.3633 17H26.7787C24.8233 17 23.1546 15.5864 22.8331 13.6576L22.6687 12.6712C22.508 11.7069 21.6736 11 20.6959 11H19.0645C18.5652 12.64 17.0406 13.8334 15.2373 13.8334C13.434 13.8334 11.9094 12.64 11.4101 11H9.06449C8.56519 12.64 7.04059 13.8334 5.2373 13.8334C3.02817 13.8334 1.2373 12.0424 1.2373 9.83335C1.2373 7.6242 3.02817 5.83335 5.2373 5.83335C7.16069 5.83335 8.76699 7.19085 9.15039 9H11.3242C11.7076 7.19085 13.3139 5.83335 15.2373 5.83335C17.1607 5.83335 18.767 7.19085 19.1504 9H20.6959C21.6736 9 22.508 8.29315 22.6687 7.3288L22.8331 6.3424C23.1546 4.41365 24.8233 3 26.7787 3H32.3633C32.8074 1.27478 34.3735 0 36.2373 0C38.4464 0 40.2373 1.79086 40.2373 4ZM38.2373 4C38.2373 5.10455 37.3419 6 36.2373 6C35.1327 6 34.2373 5.10455 34.2373 4C34.2373 2.89543 35.1327 2 36.2373 2C37.3419 2 38.2373 2.89543 38.2373 4ZM5.2373 11.8334C6.34189 11.8334 7.23729 10.9379 7.23729 9.83335C7.23729 8.72875 6.34189 7.83335 5.2373 7.83335C4.13273 7.83335 3.2373 8.72875 3.2373 9.83335C3.2373 10.9379 4.13273 11.8334 5.2373 11.8334ZM15.2373 11.8334C16.3419 11.8334 17.2373 10.9379 17.2373 9.83335C17.2373 8.72875 16.3419 7.83335 15.2373 7.83335C14.1327 7.83335 13.2373 8.72875 13.2373 9.83335C13.2373 10.9379 14.1327 11.8334 15.2373 11.8334ZM32.2373 18C33.3419 18 34.2373 17.1045 34.2373 16C34.2373 14.8954 33.3419 14 32.2373 14C31.1327 14 30.2373 14.8954 30.2373 16C30.2373 17.1045 31.1327 18 32.2373 18Z'\n\t\t\t\t\t\t\t\t\tfill='#EA4B71'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M44.2393 15.0007H46.3277V10.5791C46.3277 9.12704 47.2088 8.49074 48.204 8.49074C49.183 8.49074 49.9498 9.14334 49.9498 10.4812V15.0007H52.038V10.057C52.038 7.91969 50.798 6.67969 48.8567 6.67969C47.633 6.67969 46.9477 7.16914 46.4582 7.80544H46.3277L46.1482 6.84284H44.2393V15.0007Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M60.0318 9.50205V9.40415C60.7498 9.0452 61.4678 8.4252 61.4678 7.20155C61.4678 5.43945 60.0153 4.37891 58.0088 4.37891C55.9528 4.37891 54.4843 5.5047 54.4843 7.23415C54.4843 8.4089 55.1698 9.0452 55.9203 9.40415V9.50205C55.0883 9.79575 54.0928 10.6768 54.0928 12.1452C54.0928 13.9237 55.5613 15.1637 57.9923 15.1637C60.4233 15.1637 61.8428 13.9237 61.8428 12.1452C61.8428 10.6768 60.8638 9.81205 60.0318 9.50205ZM57.9923 5.87995C58.8083 5.87995 59.4118 6.40205 59.4118 7.2831C59.4118 8.16415 58.7918 8.6863 57.9923 8.6863C57.1928 8.6863 56.5238 8.16415 56.5238 7.2831C56.5238 6.38575 57.1603 5.87995 57.9923 5.87995ZM57.9923 13.5974C57.0458 13.5974 56.2793 12.9937 56.2793 11.9658C56.2793 11.0358 56.9153 10.3342 57.9758 10.3342C59.0203 10.3342 59.6568 11.0195 59.6568 11.9984C59.6568 12.9937 58.9223 13.5974 57.9923 13.5974Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M63.9639 15.0007H66.0524V10.5791C66.0524 9.12704 66.9334 8.49074 67.9289 8.49074C68.9079 8.49074 69.6744 9.14334 69.6744 10.4812V15.0007H71.7629V10.057C71.7629 7.91969 70.5229 6.67969 68.5814 6.67969C67.3579 6.67969 66.6724 7.16914 66.1829 7.80544H66.0524L65.8729 6.84284H63.9639V15.0007Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</div>\n\t\t\t</section>\n\t\t</div>\n\t</body>\n\n</html>"
},
"typeVersion": 1.2
},
{
"id": "0e968154-ead5-4194-834e-0d1175e7c1d9",
"name": "AI Researcher",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
2900,
920
],
"parameters": {
"text": "={{ $json.answer }}",
"options": {
"systemMessage": "=You are a user research expert interviewing a user on the topic of \"{{ $('Set Interview Topic').first().json.interview_topic }}\".\n\n* Your task is to ask open-ended questions relevant to the interview topic.\n* Ask only one question at a time. Analyse the previous question and ask new question each time. If there is an opportunity to dig deeper into a previous answer, do so but limit to 1 follow-on question.\n* Keep asking questions until the user requests to stop the interview. When the user requests to stop the interview and no question is required, \"question\" is an empty string.\n* Use a friendly and polite tone when asking questions.\n* If the user answers are inrelevant to the question, ask the question again or move on to another question.\n* If the user's answer is beyond the scope of the interview, ignore the answer and ask if the user would like to stop the interview.\n*You must format your response using the following json schema as we require pre processing before responding to the user.\n```\n{\n \"type\":\"object\",\n \"properties\": {\n \"stop_interview\": { \"type\": \"boolean\" },\n \"question\": { \"type\": [\"string\", \"null\"] }\n }\n}\n```\n* Output only the json object and do not prefix or suffix the message with extraneous text."
},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 1.7
},
{
"id": "969d4094-1046-4f53-bf8b-5ae7e50bd3ed",
"name": "Parse Response",
"type": "n8n-nodes-base.set",
"position": [
3220,
920
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "bf61134c-e24c-453e-97ef-5edd25726148",
"name": "output",
"type": "object",
"value": "={{\n$json.output\n .replace('```json', '')\n .replace('```', '')\n .parseJson()\n}}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "323b73c4-8c77-48a9-a549-f3e863ba72c2",
"name": "Groq Chat Model",
"type": "@n8n/n8n-nodes-langchain.lmChatGroq",
"position": [
2860,
1120
],
"parameters": {
"model": "llama-3.2-90b-text-preview",
"options": {}
},
"credentials": {
"groqApi": {
"id": "YQVoV5K9FREww7t1",
"name": "Groq account"
}
},
"typeVersion": 1
},
{
"id": "bf4518c4-8e59-450e-be5a-92f31cf38528",
"name": "Show Transcript",
"type": "n8n-nodes-base.html",
"position": [
5260,
1140
],
"parameters": {
"html": "\n<html lang='en'>\n\n\t<head>\n\t\t<meta charset='UTF-8' />\n\t\t<meta name='viewport' content='width=device-width, initial-scale=1.0' />\n\t\t<link rel='icon' type='image/png' href='https://n8n.io/favicon.ico' />\n\t\t<link\n\t\t\thref='https://fonts.googleapis.com/css?family=Open+Sans'\n\t\t\trel='stylesheet'\n\t\t\ttype='text/css'\n\t\t/>\n\n\t\t<title>AI Interviewer Transcripts</title>\n\n\t\t<style>\n\t\t\t*, ::after, ::before { box-sizing: border-box; margin: 0; padding: 0; } body { font-family:\n\t\t\tOpen Sans, sans-serif; font-weight: 400; font-size: 12px; display: flex; flex-direction:\n\t\t\tcolumn; justify-content: start; background-color: #FBFCFE; } .container { margin: auto;\n\t\t\ttext-align: center; padding-top: 24px; width: 448px; } .card { padding: 24px;\n\t\t\tbackground-color: white; border: 1px solid #DBDFE7; border-radius: 8px; box-shadow: 0px 4px\n\t\t\t16px 0px #634DFF0F; margin-bottom: 16px; } .n8n-link a { color: #7E8186; font-weight: 600;\n\t\t\tfont-size: 12px; text-decoration: none; } .n8n-link svg { display: inline-block;\n\t\t\tvertical-align: middle; } .header h1 { color: #525356; font-size: 20px; font-weight: 400;\n\t\t\tpadding-bottom: 8px; } .header p { color: #7E8186; font-size: 14px; font-weight: 400; }\n\t\t</style>\n\t</head>\n\n\t<body>\n\t\t<div class='container' style=\"width:640px\">\n\t\t\t<section>\n\t\t\t\t<div class='card'>\n\t\t\t\t\t<div class='header'>\n\t\t\t\t\t\t<h1>Thanks for Completing the Interview!</h1>\n\t\t\t\t\t\t<p style=\"margin-bottom:12px;\">If you liked this demo, <br/>please follow me on <a href=\"http://linkedin.com/in/jimleuk\" target=\"_blank\">http://linkedin.com/in/jimleuk</a> and\n <a href=\"https://x.com/jimle_uk\" target=\"_blank\">https://x.com/jimle_uk</a>\n </p>\n <p>\n <a href=\"https://n8n.partnerlinks.io/ee7izbliiw0n\" target=\"_blank\">\n Support my work! Sign up to n8n using this link 🙏\n </a>\n </p>\n </div>\n\t\t\t\t</div>\n <div class='card' >\n\t\t\t\t\t<div class='header'>\n\t\t\t\t\t\t<h1>Transcript</h1>\n <p style=\"color:#ccc;margin-bottom:24px;font-size:0.8rem\">This session is deleted within 24 hours.</p>\n {{\n $json.data\n .map(item => JSON.parse(item))\n .filter(item => item.type === 'next_question')\n .map(item => `\n <div style=\"display:flex;flex-direction:row;margin-bottom: 16px;\">\n <div style=\"width: 60px;padding-right: 5px;text-align: left;color: #ccc;\">\n ${DateTime.fromISO(item.timestamp).format('dd MMM, hh:mm')}\n </div>\n <div style=\"width:100%\">\n <div style=\"\n border: 1px solid #ccc;\n padding: 10px;\n border-radius: 5px;\n background-color: #f8f7f7;\n text-align: right;\n margin-bottom: 5px;\n\">${item.question}</div>\n <div style=\"\n border: 1px solid #c7ccec;\n padding: 10px;\n border-radius: 5px;\n background-color: #f5f5fc;\n text-align: left;\n color: #2e2e84;\n\">${item.answer}</div>\n </div>\n </div>\n `)\n .join('\\n')\n }}\n \t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t\t<div class='n8n-link'>\n\t\t\t\t\t\t<a href=\"https://n8n.partnerlinks.io/ee7izbliiw0n\" target='_blank'>\n\t\t\t\t\t\t\tForm automated with\n\t\t\t\t\t\t\t<svg\n\t\t\t\t\t\t\t\twidth='73'\n\t\t\t\t\t\t\t\theight='20'\n\t\t\t\t\t\t\t\tviewBox='0 0 73 20'\n\t\t\t\t\t\t\t\tfill='none'\n\t\t\t\t\t\t\t\txmlns='http://www.w3.org/2000/svg'\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\tfill-rule='evenodd'\n\t\t\t\t\t\t\t\t\tclip-rule='evenodd'\n\t\t\t\t\t\t\t\t\td='M40.2373 4C40.2373 6.20915 38.4464 8 36.2373 8C34.3735 8 32.8074 6.72525 32.3633 5H26.7787C25.801 5 24.9666 5.70685 24.8059 6.6712L24.6415 7.6576C24.4854 8.59415 24.0116 9.40925 23.3417 10C24.0116 10.5907 24.4854 11.4058 24.6415 12.3424L24.8059 13.3288C24.9666 14.2931 25.801 15 26.7787 15H28.3633C28.8074 13.2747 30.3735 12 32.2373 12C34.4464 12 36.2373 13.7908 36.2373 16C36.2373 18.2092 34.4464 20 32.2373 20C30.3735 20 28.8074 18.7253 28.3633 17H26.7787C24.8233 17 23.1546 15.5864 22.8331 13.6576L22.6687 12.6712C22.508 11.7069 21.6736 11 20.6959 11H19.0645C18.5652 12.64 17.0406 13.8334 15.2373 13.8334C13.434 13.8334 11.9094 12.64 11.4101 11H9.06449C8.56519 12.64 7.04059 13.8334 5.2373 13.8334C3.02817 13.8334 1.2373 12.0424 1.2373 9.83335C1.2373 7.6242 3.02817 5.83335 5.2373 5.83335C7.16069 5.83335 8.76699 7.19085 9.15039 9H11.3242C11.7076 7.19085 13.3139 5.83335 15.2373 5.83335C17.1607 5.83335 18.767 7.19085 19.1504 9H20.6959C21.6736 9 22.508 8.29315 22.6687 7.3288L22.8331 6.3424C23.1546 4.41365 24.8233 3 26.7787 3H32.3633C32.8074 1.27478 34.3735 0 36.2373 0C38.4464 0 40.2373 1.79086 40.2373 4ZM38.2373 4C38.2373 5.10455 37.3419 6 36.2373 6C35.1327 6 34.2373 5.10455 34.2373 4C34.2373 2.89543 35.1327 2 36.2373 2C37.3419 2 38.2373 2.89543 38.2373 4ZM5.2373 11.8334C6.34189 11.8334 7.23729 10.9379 7.23729 9.83335C7.23729 8.72875 6.34189 7.83335 5.2373 7.83335C4.13273 7.83335 3.2373 8.72875 3.2373 9.83335C3.2373 10.9379 4.13273 11.8334 5.2373 11.8334ZM15.2373 11.8334C16.3419 11.8334 17.2373 10.9379 17.2373 9.83335C17.2373 8.72875 16.3419 7.83335 15.2373 7.83335C14.1327 7.83335 13.2373 8.72875 13.2373 9.83335C13.2373 10.9379 14.1327 11.8334 15.2373 11.8334ZM32.2373 18C33.3419 18 34.2373 17.1045 34.2373 16C34.2373 14.8954 33.3419 14 32.2373 14C31.1327 14 30.2373 14.8954 30.2373 16C30.2373 17.1045 31.1327 18 32.2373 18Z'\n\t\t\t\t\t\t\t\t\tfill='#EA4B71'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M44.2393 15.0007H46.3277V10.5791C46.3277 9.12704 47.2088 8.49074 48.204 8.49074C49.183 8.49074 49.9498 9.14334 49.9498 10.4812V15.0007H52.038V10.057C52.038 7.91969 50.798 6.67969 48.8567 6.67969C47.633 6.67969 46.9477 7.16914 46.4582 7.80544H46.3277L46.1482 6.84284H44.2393V15.0007Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M60.0318 9.50205V9.40415C60.7498 9.0452 61.4678 8.4252 61.4678 7.20155C61.4678 5.43945 60.0153 4.37891 58.0088 4.37891C55.9528 4.37891 54.4843 5.5047 54.4843 7.23415C54.4843 8.4089 55.1698 9.0452 55.9203 9.40415V9.50205C55.0883 9.79575 54.0928 10.6768 54.0928 12.1452C54.0928 13.9237 55.5613 15.1637 57.9923 15.1637C60.4233 15.1637 61.8428 13.9237 61.8428 12.1452C61.8428 10.6768 60.8638 9.81205 60.0318 9.50205ZM57.9923 5.87995C58.8083 5.87995 59.4118 6.40205 59.4118 7.2831C59.4118 8.16415 58.7918 8.6863 57.9923 8.6863C57.1928 8.6863 56.5238 8.16415 56.5238 7.2831C56.5238 6.38575 57.1603 5.87995 57.9923 5.87995ZM57.9923 13.5974C57.0458 13.5974 56.2793 12.9937 56.2793 11.9658C56.2793 11.0358 56.9153 10.3342 57.9758 10.3342C59.0203 10.3342 59.6568 11.0195 59.6568 11.9984C59.6568 12.9937 58.9223 13.5974 57.9923 13.5974Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t<path\n\t\t\t\t\t\t\t\t\td='M63.9639 15.0007H66.0524V10.5791C66.0524 9.12704 66.9334 8.49074 67.9289 8.49074C68.9079 8.49074 69.6744 9.14334 69.6744 10.4812V15.0007H71.7629V10.057C71.7629 7.91969 70.5229 6.67969 68.5814 6.67969C67.3579 6.67969 66.6724 7.16914 66.1829 7.80544H66.0524L65.8729 6.84284H63.9639V15.0007Z'\n\t\t\t\t\t\t\t\t\tfill='#101330'\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</div>\n\t\t\t</section>\n\t\t</div>\n\t</body>\n\n</html>"
},
"typeVersion": 1.2
},
{
"id": "dff24e45-8e57-4dfc-8b65-9d315b406bd2",
"name": "Save to Google Sheet",
"type": "n8n-nodes-base.googleSheets",
"position": [
5040,
760
],
"parameters": {
"columns": {
"value": {
"name": "{{ $('Start Interview').first().json['What is your name?'] }}",
"session_id": "={{ $('UUID').first().json.data }}"
},
"schema": [
{
"id": "session_id",
"type": "string",
"display": true,
"required": false,
"displayName": "session_id",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "timestamp",
"type": "string",
"display": true,
"required": false,
"displayName": "timestamp",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "name",
"type": "string",
"display": true,
"required": false,
"displayName": "name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "type",
"type": "string",
"display": true,
"required": false,
"displayName": "type",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "question",
"type": "string",
"display": true,
"required": false,
"displayName": "question",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "answer",
"type": "string",
"display": true,
"required": false,
"displayName": "answer",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "autoMapInputData",
"matchingColumns": []
},
"options": {
"useAppend": true
},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": 1695693704,
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1wKjVdm7HeufJkHrUJn_bW9bFI_blm0laoI_jgXKDe0Q/edit#gid=1695693704",
"cachedResultName": "transcripts"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1wKjVdm7HeufJkHrUJn_bW9bFI_blm0laoI_jgXKDe0Q",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1wKjVdm7HeufJkHrUJn_bW9bFI_blm0laoI_jgXKDe0Q/edit?usp=drivesdk",
"cachedResultName": "AI Researcher with n8n Forms"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "FsFwFchwmgtBu5l7",
"name": "Google Sheets account"
}
},
"typeVersion": 4.5
},
{
"id": "8eb03a1c-02e4-4d49-bf68-bb148585828f",
"name": "Session to List",
"type": "n8n-nodes-base.splitOut",
"position": [
4700,
760
],
"parameters": {
"options": {},
"fieldToSplitOut": "session"
},
"typeVersion": 1
},
{
"id": "c594aa2b-a29d-42e4-8799-1c557d78932d",
"name": "Messages To JSON",
"type": "n8n-nodes-base.set",
"position": [
4860,
760
],
"parameters": {
"mode": "raw",
"options": {},
"jsonOutput": "={{\n{\n ...$json.session.parseJson(),\n session_id: `session_${$('UUID').first().json.data}`,\n name: $('Start Interview').first().json['What is your name?'],\n}\n}}"
},
"typeVersion": 3.4
},
{
"id": "106bd688-6ccc-4a6a-9b52-ee7187d9aebe",
"name": "Sticky Note9",
"type": "n8n-nodes-base.stickyNote",
"position": [
4540,
420
],
"parameters": {
"color": 7,
"width": 508,
"height": 293,
"content": "## 5. Save the Interview to Sheets\n[Read more about the Google Sheets node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets/)\n\nFor easier data-sharing, we can have the workflow upload the session messages into data analysis tools for our team members.\n\nFor this demo, Google Sheets is an easy option. We'll pull the entire session out of redis and upload the messages one by one to sheets.\n\n### Check out the example sheet here: https://docs.google.com/spreadsheets/d/1wKjVdm7HeufJkHrUJn_bW9bFI_blm0laoI_jgXKDe0Q/edit?usp=sharing"
},
"typeVersion": 1
},
{
"id": "b7754724-7473-4245-8b54-85c370a2b1be",
"name": "Query By Session",
"type": "n8n-nodes-base.redis",
"position": [
4920,
1240
],
"parameters": {
"key": "=session_{{ $('Webhook').first().json.params.session_id }}",
"options": {},
"operation": "get",
"propertyName": "data"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"typeVersion": 1
},
{
"id": "4b6a0db6-1d33-4ed3-a955-7562e0dba1f0",
"name": "Get Session",
"type": "n8n-nodes-base.redis",
"position": [
4540,
760
],
"parameters": {
"key": "=session_{{ $('UUID').first().json.data }}",
"keyType": "list",
"options": {},
"operation": "get",
"propertyName": "session"
},
"credentials": {
"redis": {
"id": "AbPH1yYQ924bVUqm",
"name": "Upstash (ai interviewer)"
}
},
"executeOnce": true,
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"UUID": {
"main": [
[
{
"node": "Create Session",
"type": "main",
"index": 0
}
]
]
},
"Webhook": {
"main": [
[
{
"node": "Query By Session",
"type": "main",
"index": 0
}
]
]
},
"Get Answer": {
"main": [
[
{
"node": "Generate Row",
"type": "main",
"index": 0
}
]
]
},
"Get Session": {
"main": [
[
{
"node": "Session to List",
"type": "main",
"index": 0
}
]
]
},
"Generate Row": {
"main": [
[
{
"node": "Update Session1",
"type": "main",
"index": 0
}
]
]
},
"404 Not Found": {
"main": [
[
{
"node": "Respond to Webhook",
"type": "main",
"index": 0
}
]
]
},
"AI Researcher": {
"main": [
[
{