-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Expand file tree
/
Copy pathHandling Job Application Submissions with AI and n8n Forms.json
More file actions
1036 lines (1036 loc) · 26.4 KB
/
Copy pathHandling Job Application Submissions with AI and n8n Forms.json
File metadata and controls
1036 lines (1036 loc) · 26.4 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
{
"meta": {
"instanceId": "408f9fb9940c3cb18ffdef0e0150fe342d6e655c3a9fac21f0f644e8bedabcd9"
},
"nodes": [
{
"id": "10565888-4a1b-439a-a188-c6ee7990bb63",
"name": "Extract from File",
"type": "n8n-nodes-base.extractFromFile",
"position": [
860,
260
],
"parameters": {
"options": {},
"operation": "pdf",
"binaryPropertyName": "File_Upload"
},
"typeVersion": 1
},
{
"id": "583aff4b-d9f5-44e7-8e91-4938592b5630",
"name": "OpenAI Chat Model1",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1740,
380
],
"parameters": {
"options": {}
},
"credentials": {
"openAiApi": {
"id": "8gccIjcuf3gvaoEr",
"name": "OpenAi account"
}
},
"typeVersion": 1
},
{
"id": "3a09afd0-0dce-41fd-bec3-783fcb3d01fc",
"name": "Structured Output Parser",
"type": "@n8n/n8n-nodes-langchain.outputParserStructured",
"position": [
1920,
380
],
"parameters": {
"schemaType": "manual",
"inputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"Name\": { \"type\": \"string\" },\n \"Address\": { \"type\": \"string\" },\n \"Email\": { \"type\": \"string\" },\n \"Telephone\": { \"type\": \"string\" },\n \"Education\": { \"type\": \"string\" },\n \"Skills & Technologies\": { \"type\": \"string\" },\n \"Years of Experience\": { \"type\": \"string\" },\n \"Cover Letter\": { \"type\": \"string\" }\n }\n}"
},
"typeVersion": 1.2
},
{
"id": "541a00d0-1635-48ad-b69e-83b28e178d6e",
"name": "OpenAI Chat Model2",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1020,
420
],
"parameters": {
"options": {}
},
"credentials": {
"openAiApi": {
"id": "8gccIjcuf3gvaoEr",
"name": "OpenAi account"
}
},
"typeVersion": 1
},
{
"id": "19e4ad5b-2f96-491c-bcb3-52cca526ff82",
"name": "Step 1 of 2 - Upload CV",
"type": "n8n-nodes-base.formTrigger",
"position": [
460,
220
],
"webhookId": "4cf0f3b7-6282-47af-a7f1-3dfb00a1311d",
"parameters": {
"options": {
"path": "job-application-step1of2",
"ignoreBots": true,
"buttonLabel": "Submit",
"useWorkflowTimezone": true
},
"formTitle": "Step 1 of 2: Submit Your CV",
"formFields": {
"values": [
{
"fieldLabel": "Name",
"placeholder": "Eg. Sam Smith",
"requiredField": true
},
{
"fieldType": "file",
"fieldLabel": "File Upload",
"multipleFiles": false,
"requiredField": true,
"acceptFileTypes": "pdf"
},
{
"fieldType": "dropdown",
"fieldLabel": "Acknowledgement of Terms",
"multiselect": true,
"fieldOptions": {
"values": [
{
"option": "I agree to the terms & conditions"
}
]
},
"requiredField": true
}
]
},
"responseMode": "lastNode",
"formDescription": "Thank you for your interest in applying for Acme Inc. To ensure a speedy process, please ensure you following all instructions and fill out all required inputs.\n\nThis step requires you upload your CV in a password-free PDF document. Any document that is not a CV will be rejected."
},
"typeVersion": 2.2
},
{
"id": "ec54096b-5f9f-444e-87b1-db99197731f1",
"name": "Save to Airtable",
"type": "n8n-nodes-base.airtable",
"position": [
2340,
320
],
"parameters": {
"base": {
"__rl": true,
"mode": "list",
"value": "appQ6mE9KSzlvaGDT",
"cachedResultUrl": "https://airtable.com/appQ6mE9KSzlvaGDT",
"cachedResultName": "Job Applications with AI & Forms"
},
"table": {
"__rl": true,
"mode": "list",
"value": "tblUwwRXGnNzesNgr",
"cachedResultUrl": "https://airtable.com/appQ6mE9KSzlvaGDT/tblUwwRXGnNzesNgr",
"cachedResultName": "Table 1"
},
"columns": {
"value": {
"Name": "={{ $json.output.Name }}",
"Email": "={{ $json.output.Email }}",
"Address": "={{ $json.output.Address }}",
"Education": "={{ $json.output.Education }}",
"Telephone": "={{ $json.output.Telephone }}",
"Cover Letter": "={{ $json.output['Cover Letter'] }}",
"Submitted By": "={{ $('Step 1 of 2 - Upload CV').first().json.Name }}",
"Years of Experience": "={{ $json.output['Years of Experience'] }}",
"Skills & Technologies": "={{ $json.output['Skills & Technologies'] }}"
},
"schema": [
{
"id": "Name",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "File",
"type": "array",
"display": true,
"removed": true,
"readOnly": false,
"required": false,
"displayName": "File",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Cover Letter",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Cover Letter",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Address",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Address",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Email",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Email",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Telephone",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Telephone",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Education",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Education",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Skills & Technologies",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Skills & Technologies",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Years of Experience",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Years of Experience",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Created",
"type": "string",
"display": true,
"removed": true,
"readOnly": true,
"required": false,
"displayName": "Created",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Last Modified",
"type": "string",
"display": true,
"removed": true,
"readOnly": true,
"required": false,
"displayName": "Last Modified",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Submitted By",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Submitted By",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": []
},
"options": {},
"operation": "create"
},
"credentials": {
"airtableTokenApi": {
"id": "Und0frCQ6SNVX3VV",
"name": "Airtable Personal Access Token account"
}
},
"typeVersion": 2.1
},
{
"id": "127965b3-a2c6-443b-942d-8691b5bcb25d",
"name": "Classify Document",
"type": "@n8n/n8n-nodes-langchain.textClassifier",
"position": [
1020,
260
],
"parameters": {
"options": {
"fallback": "other"
},
"inputText": "={{ $json.text }}",
"categories": {
"categories": [
{
"category": "CV or Resume",
"description": "This document is a CV or Resume"
}
]
}
},
"typeVersion": 1
},
{
"id": "b82476c8-b285-467f-b344-e1f667f42479",
"name": "Upload File to Record",
"type": "n8n-nodes-base.httpRequest",
"position": [
2540,
320
],
"parameters": {
"url": "=https://content.airtable.com/v0/{{ $('Save to Airtable').params.base.value }}/{{ $json.id }}/File/uploadAttachment",
"method": "POST",
"options": {},
"sendBody": true,
"authentication": "predefinedCredentialType",
"bodyParameters": {
"parameters": [
{
"name": "contentType",
"value": "application/pdf"
},
{
"name": "filename",
"value": "={{ $workflow.id }}-{{ $execution.id }}.pdf"
},
{
"name": "file",
"value": "={{ $('Step 1 of 2 - Upload CV').first().binary.File_Upload.data }}"
}
]
},
"nodeCredentialType": "airtableTokenApi"
},
"credentials": {
"airtableTokenApi": {
"id": "Und0frCQ6SNVX3VV",
"name": "Airtable Personal Access Token account"
}
},
"typeVersion": 4.2
},
{
"id": "ee6f59ee-781f-4ed4-8cec-b7de70a82dac",
"name": "Form Success",
"type": "n8n-nodes-base.form",
"position": [
3900,
320
],
"webhookId": "4b154ccc-ad54-4cc2-a239-cf8354fc91bf",
"parameters": {
"options": {},
"operation": "completion",
"completionTitle": "Application Success",
"completionMessage": "Thank you for completing the application process.\nYour informaion is filed securely and will be reviewed by our team.\n\nWe will be in touch shortly."
},
"typeVersion": 1
},
{
"id": "43d46474-b9f8-4adf-89f8-d4c993641448",
"name": "Save to Airtable1",
"type": "n8n-nodes-base.airtable",
"onError": "continueErrorOutput",
"position": [
3720,
320
],
"parameters": {
"base": {
"__rl": true,
"mode": "list",
"value": "appQ6mE9KSzlvaGDT",
"cachedResultUrl": "https://airtable.com/appQ6mE9KSzlvaGDT",
"cachedResultName": "Job Applications with AI & Forms"
},
"table": {
"__rl": true,
"mode": "list",
"value": "tblUwwRXGnNzesNgr",
"cachedResultUrl": "https://airtable.com/appQ6mE9KSzlvaGDT/tblUwwRXGnNzesNgr",
"cachedResultName": "Table 1"
},
"columns": {
"value": {
"Name": "={{ $json.Name }}",
"Email": "={{ $json.Email }}",
"Address": "={{ $json.Address }}",
"Education": "={{ $json.Education }}",
"Telephone": "={{ $json.Telephone }}",
"Cover Letter": "={{ $json.output['Cover Letter'] }}",
"Years of Experience": "={{ $json['Years of Experience'] }}",
"Skills & Technologies": "={{ $json['Skills & Technologies'] }}"
},
"schema": [
{
"id": "Name",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Name",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "File",
"type": "array",
"display": true,
"removed": true,
"readOnly": false,
"required": false,
"displayName": "File",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Cover Letter",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Cover Letter",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Address",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Address",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Email",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Email",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Telephone",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Telephone",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Education",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Education",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Skills & Technologies",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Skills & Technologies",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Years of Experience",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Years of Experience",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Created",
"type": "string",
"display": true,
"removed": true,
"readOnly": true,
"required": false,
"displayName": "Created",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Last Modified",
"type": "string",
"display": true,
"removed": true,
"readOnly": true,
"required": false,
"displayName": "Last Modified",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Submitted By",
"type": "string",
"display": true,
"removed": true,
"readOnly": false,
"required": false,
"displayName": "Submitted By",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"Email",
"Name"
]
},
"options": {},
"operation": "update"
},
"credentials": {
"airtableTokenApi": {
"id": "Und0frCQ6SNVX3VV",
"name": "Airtable Personal Access Token account"
}
},
"typeVersion": 2.1
},
{
"id": "38115307-824c-4354-917c-b18e93178f87",
"name": "Step 2 of 2 - Application Form",
"type": "n8n-nodes-base.formTrigger",
"position": [
3520,
320
],
"webhookId": "db923d6c-ea24-4679-b4ba-d3b142ef8338",
"parameters": {
"options": {
"path": "job-application-step2of2",
"ignoreBots": true,
"useWorkflowTimezone": true
},
"formTitle": "Step 2 of 2: Application Form",
"formFields": {
"values": [
{
"fieldLabel": "Name",
"placeholder": "Eg. Sam Smith",
"requiredField": true
},
{
"fieldLabel": "Address",
"requiredField": true
},
{
"fieldType": "email",
"fieldLabel": "Email",
"requiredField": true
},
{
"fieldLabel": "Telephone",
"requiredField": true
},
{
"fieldType": "textarea",
"fieldLabel": "Education",
"requiredField": true
},
{
"fieldType": "textarea",
"fieldLabel": "Skills & Technologies",
"requiredField": true
},
{
"fieldType": "textarea",
"fieldLabel": "Years of Experience",
"requiredField": true
},
{
"fieldType": "textarea",
"fieldLabel": "Cover Letter",
"requiredField": true
},
{
"fieldType": "dropdown",
"fieldLabel": "Acknowledgement of Terms",
"multiselect": true,
"fieldOptions": {
"values": [
{
"option": "I agree to consent to the terms and conditions"
}
]
},
"requiredField": true
}
]
},
"formDescription": "This application form prefills using the CV you submitted. Please make any amendments as required and once satisfied, please submit the form to complete the application process."
},
"typeVersion": 2.2
},
{
"id": "1171540b-ebb2-41cb-b9f1-2da335caaece",
"name": "Sticky Note",
"type": "n8n-nodes-base.stickyNote",
"position": [
300,
20
],
"parameters": {
"color": 7,
"width": 430,
"height": 381,
"content": "## 1. Application Form To Upload CV\n[Learn more the Form Trigger node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.formtrigger/)\n\nOur application process starts with a simple file upload to get the applicant's CV for processing."
},
"typeVersion": 1
},
{
"id": "4791901b-31a6-44c3-a1da-9c32b78cf305",
"name": "Sticky Note1",
"type": "n8n-nodes-base.stickyNote",
"position": [
760,
17.5
],
"parameters": {
"color": 7,
"width": 774,
"height": 593,
"content": "## 2. Document Classifier and ReUpload Form\n[Read more about the Text Classifier](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nForm validation remains a critical step and before the introduction of LLMs, classifying document types was a relatively troublesome process. Today, n8n's text classifier node does an excellent job at this task.\n\nContextual validation powered by AI means invalid, incomplete or poorly created applicant CVs can be rejected as a quality check. When this happens in our workflow, we present the user again with the file upload form to retry."
},
"typeVersion": 1
},
{
"id": "4dc1a316-15b7-4568-9910-79b4a7989dcb",
"name": "Sticky Note2",
"type": "n8n-nodes-base.stickyNote",
"position": [
1560,
-20
],
"parameters": {
"color": 7,
"width": 648,
"height": 584,
"content": "## 3. Smarter Application Pre-fill with Job Role Context\n[Read more about the Basic LLM node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm)\n\nInformation extraction is a logical next step once we have our PDF contents but we can extend further by only extracting data which is relevant to our job post. This ensure the information we extract is always relevant which saves time for the hiring team.\n\nTo achieve this for this demo, I've included the job post in the prompt for the LLM to compare the CV against. The provides the AI enough context to complete the task successfully."
},
"typeVersion": 1
},
{
"id": "76006a7b-32ce-4606-be98-9a7b7b451215",
"name": "Application Suitability Agent",
"type": "@n8n/n8n-nodes-langchain.chainLlm",
"position": [
1740,
220
],
"parameters": {
"text": "=Here is the candidate's CV:\n{{ $json.text }}",
"messages": {
"messageValues": [
{
"message": "=Extract information from the applicant's CV which is relevant to the job post.\nWhen writing the cover letter, use no more than a few paragraphs. No need to address the hiring company or personnel as this text will be input into an online form.\nUse a formal and professional tone.\nThis is the job post which the cover letter should address:\n\n```\nJob Post: General Operations Manager – Manufacturing Industry\nJob Type: Full-time\nExperience Level: Mid to Senior\n\nAbout Us:\nWe are a forward-thinking manufacturing company committed to innovation, quality, and sustainability. We strive to improve operations, enhance product quality, and implement eco-friendly practices, fostering a productive and collaborative work environment.\n\nJob Description:\nWe are seeking an experienced and dynamic General Operations Manager to lead and optimize our manufacturing processes. The successful candidate will oversee production, enhance efficiency, and implement effective strategies to support our mission. This role is ideal for a seasoned professional with a strong background in operational management and a knack for process improvement.\n\nKey Responsibilities:\n\nOversee and manage production and sales teams across multiple shifts, ensuring seamless 24/6 operations.\nDevelop and implement cost-effective quality control and accountability measures to maintain high manufacturing standards.\nManage inventory and procurement, strategically timing raw material purchases to maximize cost efficiency.\nLead ERP system upgrades or similar digital transformation projects, ensuring timely and budget-friendly execution.\nOptimize credit control and payment terms to improve cash flow while maintaining client relationships.\nAdvocate for sustainable practices, including integrating recycled materials into production processes.\nQualifications:\n\nBachelor's degree in Business Administration or a related field; a Master's in Financial Economics is a plus.\nProven experience in a leadership role within the manufacturing industry.\nExpertise in managing teams, production cycles, and quality assurance.\nProficiency in ERP systems and software such as Stata, Bloomberg Professional, and Thomson Reuters DataStream.\nStrong analytical, decision-making, and organizational skills.\nFamiliarity with capital markets, private equity, or strategic management consulting is a plus.\nPreferred Skills:\n\nAdvanced knowledge of plastics manufacturing, including polyethylene and polypropylene applications.\nExperience in implementing sustainability initiatives and green business practices.\nExcellent communication skills, with a history of collaboration and team-building.\nWhat We Offer:\n\nCompetitive salary and benefits package.\nOpportunities for professional growth and development.\nA collaborative and innovative work environment.\nHow to Apply:\nPlease send your resume and a cover letter highlighting your experience and achievements to [HR Email]. Applications will be reviewed on a rolling basis.\n\nJoin us and drive operational excellence in manufacturing!\n```"
}
]
},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 1.5
},
{
"id": "cfc6a1a1-d42c-49b1-a93b-4a04e7e88521",
"name": "Sticky Note3",
"type": "n8n-nodes-base.stickyNote",
"position": [
2240,
40
],
"parameters": {
"color": 7,
"width": 528,
"height": 524,
"content": "## 4. Save to Applicant Tracking System\n[Read more about the Airtable node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.airtable/)\n\nNext, we can complete our simple data capture by integrating and pushing data to our Applicant Tracking System.\n\nHere, we're using Airtable because we can also store PDF files in our rows.\n\nSee our example Airtable here: [https://airtable.com/appQ6mE9KSzlvaGDT/shrIivfe9qH6YEYAs](https://airtable.com/appQ6mE9KSzlvaGDT/shrIivfe9qH6YEYAs)"
},
"typeVersion": 1
},
{
"id": "8f21067f-a851-4480-84b8-bb37eddfd7d6",
"name": "Sticky Note4",
"type": "n8n-nodes-base.stickyNote",
"position": [
2780,
40
],
"parameters": {
"color": 7,
"width": 575.8190139534884,
"height": 524,
"content": "## 5. Redirect to Application Form\n[Learn more about Form Ending](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.form/#form-ending)\n\nFinally to complete the form flow for step 1 of 2, we'll use a form ending node to redirect the user to step 2 of 2.\n\nHere, we using query params as part of our redirect as this will pre-fill the form fields in step 2 of 2."
},
"typeVersion": 1
},
{
"id": "2ba9cea6-173f-45be-bdda-a6ef061d91f5",
"name": "Sticky Note5",
"type": "n8n-nodes-base.stickyNote",
"position": [
3380,
40
],
"parameters": {
"color": 7,
"width": 788,
"height": 524,
"content": "## 6. Application Form to Amend Details\n[Learn more about Forms](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.form)\n\nIn the second part of the application process, applicants are presented with a form containing multiple fields to complete. This step has often been a source of frustration for many, as they end up duplicating information that’s already in their CV.\n\nIf our redirection with prefilled data works as intended, this issue will be resolved, as the fields will be automatically populated by our LLM during step 1 of 2. This also allows candidates the opportunity to review and refine the application fields before submitting."
},
"typeVersion": 1
},
{
"id": "5add63c3-19d4-4035-a718-b1c125a03c67",
"name": "File Upload Retry",
"type": "n8n-nodes-base.form",
"position": [
1340,
380
],
"webhookId": "c3e8dc74-c6e0-4d0b-acf3-8bbc2f7c9ae2",
"parameters": {
"options": {
"formTitle": "Please upload a CV",
"formDescription": "Unfortunately, we were unable to process your previous file upload.\n\nTo continue, you must upload a valid CV in PDF format. "
},
"formFields": {
"values": [
{
"fieldType": "file",
"fieldLabel": "File Upload",
"multipleFiles": false,
"requiredField": true,
"acceptFileTypes": "pdf"
}
]
}
},
"typeVersion": 1
},
{
"id": "cc27b37f-26f5-47c3-9ac2-4412352070e5",
"name": "Redirect To Step 2 of 2",
"type": "n8n-nodes-base.form",
"position": [
3120,
280
],
"webhookId": "1b6e2375-e21d-4e4f-a44e-3ef0de95320e",
"parameters": {
"operation": "completion",
"redirectUrl": "=https://<HOST>/form/job-application-step2of2?{{ $('Application Suitability Agent').first().json.output.urlEncode() }}",
"respondWith": "redirect"
},
"typeVersion": 1
},
{
"id": "1cba63a9-57cb-4e17-a601-2bd64fb50dbf",
"name": "Sticky Note6",
"type": "n8n-nodes-base.stickyNote",
"position": [
-140,
-240
],
"parameters": {
"width": 420,
"height": 640,
"content": "## Try It Out!\n\n### This n8n template combines form file uploads with AI components to create a simple but effective job application submission flow.\nIt's a perfect low-cost solution without the bells and whistles of the surface yet is highly advanced with its use of AI.\n\n### How it works\n* The application submission process starts with an n8n form trigger to accept CV files in the form of PDFs.\n* The PDF is validated using the text classifier node to determine if it is a valid CV.\n* A basic LLM node is used to extract relevant information from the CV as data capture. A copy of the original job post is included to ensure relevancy.\n* Applicant's data is then sent to an ATS for processing. For our demo, we used airtable because we could attach PDFs to rows.\n* Finally, a second form trigger is used to allow the applicant to amend any of the generated application fields.\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": "4289f9f2-2286-4bc7-9045-c645ff292341",
"name": "Sticky Note7",
"type": "n8n-nodes-base.stickyNote",
"position": [
3060,
460
],
"parameters": {
"height": 120,
"content": "### 🚨 Change Base URL here!\nThis redirect requires the full base URL, change it to the host of your n8n instance."
},
"typeVersion": 1
},
{
"id": "fca5b2ab-291f-4ac3-b4e1-13911666359f",
"name": "Submission Success",
"type": "n8n-nodes-base.form",
"position": [
2900,
280
],
"webhookId": "f3b12dd4-dd5d-47a9-8bc1-727ba7eb5d15",
"parameters": {
"options": {
"formTitle": "CV Submission Successful!",
"buttonLabel": "Continue",
"formDescription": "We'll now redirect you to step 2 of 2 - our Application form. Please note, some fields will be prefilled with information from your CV. Feel free to amend this information as needed."
},
"formFields": {
"values": [
{
"fieldType": "dropdown",
"fieldLabel": "Acknowledgement",
"multiselect": true,
"fieldOptions": {
"values": [
{
"option": "I understand my CV will be held soley for purpose of application and for no more than 90 days."
}
]
},
"requiredField": true
}
]
}
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Save to Airtable": {
"main": [
[
{
"node": "Upload File to Record",
"type": "main",
"index": 0
}
]
]
},
"Classify Document": {
"main": [
[
{
"node": "Application Suitability Agent",
"type": "main",
"index": 0
}
],
[
{
"node": "File Upload Retry",
"type": "main",
"index": 0
}
]
]
},
"Extract from File": {
"main": [
[
{
"node": "Classify Document",
"type": "main",
"index": 0
}
]
]
},
"File Upload Retry": {
"main": [
[
{
"node": "Extract from File",
"type": "main",
"index": 0
}
]
]
},
"Save to Airtable1": {
"main": [
[
{
"node": "Form Success",
"type": "main",
"index": 0
}
],
[
{
"node": "Form Success",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model1": {
"ai_languageModel": [
[
{
"node": "Application Suitability Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"OpenAI Chat Model2": {
"ai_languageModel": [
[
{
"node": "Classify Document",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Submission Success": {
"main": [
[
{
"node": "Redirect To Step 2 of 2",
"type": "main",
"index": 0
}
]
]
},
"Upload File to Record": {
"main": [
[
{
"node": "Submission Success",
"type": "main",
"index": 0
}
]
]
},
"Step 1 of 2 - Upload CV": {
"main": [
[
{
"node": "Extract from File",
"type": "main",
"index": 0
}
]
]