forked from go2coding/go2coding.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgemini-for-google-workspace-prompting-guide-101.html
1193 lines (1119 loc) · 247 KB
/
gemini-for-google-workspace-prompting-guide-101.html
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
<html><body><div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:555.0pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">1</span></p>
<p style="top:125.9pt;left:70.5pt;line-height:93.1pt"><span style="font-family:GoogleSans,serif;font-size:93.1pt">Prompting</span></p>
<p style="top:221.2pt;left:70.5pt;line-height:93.1pt"><span style="font-family:GoogleSans,serif;font-size:93.1pt">guide 101</span></p>
<p style="top:719.8pt;left:422.2pt;line-height:14.7pt"><span style="font-family:GoogleSans,serif;font-size:14.7pt;color:#ffffff">April 2024 edition</span></p>
<p style="top:395.1pt;left:73.8pt;line-height:19.5pt"><span style="font-family:GoogleSans,serif;font-size:19.5pt;color:#ffffff">A quick-start </span></p>
<p style="top:417.4pt;left:73.8pt;line-height:19.5pt"><span style="font-family:GoogleSans,serif;font-size:19.5pt;color:#ffffff">handbook for </span></p>
<p style="top:439.7pt;left:73.8pt;line-height:19.5pt"><span style="font-family:GoogleSans,serif;font-size:19.5pt;color:#ffffff">effective prompts</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.8pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">2</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Writing effective prompts </span></b></p>
<p style="top:93.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">From the very beginning, Google Workspace was built to allow you to collaborate in real time with other people. </span></p>
<p style="top:109.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now, you can also collaborate with AI using Gemini for Google Workspace to help boost your productivity and </span></p>
<p style="top:125.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">creativity without sacrificing privacy or security. The embedded generative AI-powered features can help you </span></p>
<p style="top:141.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write, organize, visualize, accelerate workflows, have richer meetings, and much more, all while using your </span></p>
<p style="top:157.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">favorite apps like Gmail, Google Docs, Google Sheets, Google Meet, and Google Slides.</span></p>
<p style="top:189.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This book provides you with the foundational skills to write effective, instructional prompts when using Gemini </span></p>
<p style="top:205.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">for Workspace so that you can be more productive and efficient in your day-to-day tasks. You can think of </span></p>
<p style="top:221.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">a prompt as a conversation starter with your AI-powered assistant. You might write several prompts as the </span></p>
<p style="top:237.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">conversation progresses. While the possibilities are virtually endless, there are consistent best practices that </span></p>
<p style="top:253.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">you can put to use today. </span></p>
<p style="top:285.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">There are four main areas to consider when writing an effective prompt. You don’t need to use all four, </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:301.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">but using a few will help!</span></p>
<p style="top:331.8pt;left:54.0pt;line-height:12.0pt"><span style="font-family:MinionPro,serif;font-size:12.0pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Persona </span></p>
<p style="top:352.3pt;left:54.0pt;line-height:12.0pt"><span style="font-family:MinionPro,serif;font-size:12.0pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Task </span></p>
<p style="top:372.8pt;left:54.0pt;line-height:12.0pt"><span style="font-family:MinionPro,serif;font-size:12.0pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Context </span></p>
<p style="top:393.3pt;left:54.0pt;line-height:12.0pt"><span style="font-family:MinionPro,serif;font-size:12.0pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Format </span></p>
<p style="top:415.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:431.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Here is an example of a prompt using all four areas that could work well in Gmail and Google Docs:</span></p>
<p style="top:467.9pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You are a Google Cloud program manager. Draft an executive summary email to </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> [persona] based on </span></p>
<p style="top:483.9pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> [details about relevant program docs]. Limit to bullet points. </span></p>
<p style="top:515.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Here are quick tips to get you started with Gemini for Workspace:</span></p>
<p style="top:547.9pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSans,serif;font-size:10.0pt">1. </span></b><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Use natural language. </span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Write as if you’re speaking to another person. Express complete thoughts in </span></p>
<p style="top:563.9pt;left:67.5pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">full sentences.</span></p>
<p style="top:584.4pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSans,serif;font-size:10.0pt">2. </span></b><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Be specific and iterate.</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Tell Gemini for Workspace what you need it to do (summarize, write, change the </span></p>
<p style="top:600.4pt;left:67.5pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">tone, create). Provide as much context as possible. </span></p>
<p style="top:620.9pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSans,serif;font-size:10.0pt">3. </span></b><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Be concise and avoid complexity. </span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">State your request in brief — but specific — language. Avoid jargon.</span></p>
<p style="top:641.4pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSans,serif;font-size:10.0pt">4. </span></b><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Make it a conversation.</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Fine-tune your prompts if the results don’t meet your expectations or if you believe </span></p>
<p style="top:657.4pt;left:67.5pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">there’s room for improvement. Use follow-up prompts and an iterative process of review and refinement to </span></p>
<p style="top:673.4pt;left:67.5pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">yield better results. </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.7pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">3</span></p>
<p style="top:85.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">Prompting is an art. You will likely need to try a few different approaches </span></p>
<p style="top:105.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">for your prompt if you don’t get your desired outcome the first time. Based </span></p>
<p style="top:125.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">on what we have learned during our Workspace Labs program, the most </span></p>
<p style="top:145.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">successful prompts average around 21 words, yet prompts people often </span></p>
<p style="top:165.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">try without knowing this are short — usually less than nine words. </span></p>
<p style="top:205.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">Generative AI and all of its possibilities are exciting, but it’s still new. </span></p>
<p style="top:225.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">Even though our models are getting better every day, our prompts </span><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff"> </span></p>
<p style="top:245.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">can sometimes have unpredictable responses.</span></p>
<p style="top:285.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">Before putting an output from Gemini for Workspace into action, review </span></p>
<p style="top:305.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">it to ensure clarity, relevance, and accuracy. And of course the most </span></p>
<p style="top:325.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">important thing to keep in mind: Generative AI is meant to help humans </span></p>
<p style="top:345.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">but the final output is yours.</span></p>
<p style="top:385.3pt;left:80.0pt;line-height:14.0pt"><span style="font-family:GoogleSansText,serif;font-size:14.0pt;color:#ffffff">The example prompts in this guide are meant for illustrative purposes.</span></p>
<p style="top:757.3pt;left:553.7pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#ffffff">3</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.3pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">4</span></p>
<p style="top:58.9pt;left:54.0pt;line-height:30.0pt"><b><span style="font-family:GoogleSans,serif;font-size:30.0pt">Table of contents</span></b></p>
<p style="top:134.0pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Writing effective prompts</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.</span></p>
<p style="top:134.0pt;left:256.5pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 2</span></p>
<p style="top:175.5pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Introduction</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.</span></p>
<p style="top:175.5pt;left:151.8pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">................ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 5</span></p>
<p style="top:217.0pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Customer service</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">......... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 7</span></p>
<p style="top:258.5pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Executives and entrepreneurs</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.. . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 13</span></p>
<p style="top:300.0pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Human resources</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.......... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 20</span></p>
<p style="top:341.5pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Marketing</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.................. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 26</span></p>
<p style="top:383.0pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Project management</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.</span></p>
<p style="top:383.0pt;left:221.6pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">...... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 32</span></p>
<p style="top:424.5pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Sales</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.</span></p>
<p style="top:424.5pt;left:95.9pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">. . . . .................... . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 36</span></p>
<p style="top:466.0pt;left:54.0pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt">Leveling up your prompt writing</span><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">.</span></p>
<p style="top:466.0pt;left:305.4pt;line-height:18.0pt"><span style="font-family:GoogleSans,serif;font-size:18.0pt;color:#787e85">. . . . . . . . . . . . . . . . . . . . . . . . . . .</span><span style="font-family:GoogleSans,serif;font-size:16.0pt"> Page 43</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">5</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Introduction</span></b></p>
<p style="top:96.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Gemini for Google Workspace: Prompting 101</span></b></p>
<p style="top:129.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">There are multiple ways to access the generative AI features of Gemini for Google Workspace. It is a powerful </span></p>
<p style="top:145.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">generative AI experience that is seamlessly integrated into the apps you use every day — Gmail, Google Docs, </span></p>
<p style="top:161.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Google Sheets, Google Meet, and Google Slides. And you can visit gemini.google.com to chat with Gemini </span></p>
<p style="top:177.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">(with Google Workspace enterprise-grade security and privacy).</span></p>
<p style="top:209.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Understanding what makes an effective prompt and learning to craft prompts on the fly will supercharge </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:225.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">your productivity and creativity. You can think of Gemini for Workspace as your AI-powered assistant that </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:241.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">can help you: </span></p>
<p style="top:273.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Improve your writing </span></p>
<p style="top:294.3pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Organize data</span></p>
<p style="top:314.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Create original images</span></p>
<p style="top:335.3pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Summarize information and surface insights</span></p>
<p style="top:355.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Foster meaningful connections with colleagues</span></p>
<p style="top:376.3pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Research unfamiliar topics</span></p>
<p style="top:396.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">• </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Spot trends, synthesize information, and identify business opportunities</span></p>
<p style="top:432.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini for Workspace helps you to work smarter, not harder, increasing productivity and saving time so you </span></p>
<p style="top:448.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">can focus on higher-impact work. This guide explores different ways to quickly jump in and gain mastery of the </span></p>
<p style="top:464.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">basics to help you accomplish your day-to-day tasks. </span></p>
<p style="top:496.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As you gain confidence and familiarity with this new way of working, you’ll be ready to explore increasingly </span></p>
<p style="top:512.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">complex prompts that enable you to enhance entire workflows, where Gemini for Workspace can be your </span></p>
<p style="top:528.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">thought partner, writing coach, and more. </span></p>
<p style="top:560.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The opportunities to improve your productivity and creativity are nearly endless with Gemini for Workspace. </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">6</span></p>
<p style="top:56.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">How to use this prompt guide</span></b></p>
<p style="top:91.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This handbook is a quick-start guide to introduce you to prompting with Gemini for Workspace. It includes </span></p>
<p style="top:107.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">scenarios for different personas, examples of use cases, and potential prompts for everyday tasks performed </span></p>
<p style="top:123.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">by executives, founders, and professionals in sales, marketing, customer service, project management, and </span></p>
<p style="top:139.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">human resources. </span></p>
<p style="top:171.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You will notice a variety of prompt styles. Some have bracketed items, which indicate where you would fill in </span></p>
<p style="top:187.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">specific details. Other prompts are presented without variables marked to show you what a full prompt could </span></p>
<p style="top:203.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">look like. All of the prompts in this guide are meant to inspire you, but ultimately they will need to be tweaked </span></p>
<p style="top:219.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">to help you with your specific work. </span></p>
<p style="top:251.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">To get started, jump to the section that best matches your role. Use the role-specific suggested prompts as </span></p>
<p style="top:267.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">inspiration to help you unlock a new and powerful way of working. </span></p>
<p style="top:299.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Next, just look for these features and learn how you can get started with each one by visiting </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:315.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">g.co/gemini/features:</span></p>
<p style="top:348.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">H</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">elp me write (Google Docs)</span></p>
<p style="top:380.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">H</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">elp me write (Gmail)</span></p>
<p style="top:412.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me organize (Google Sheets)</span></p>
<p style="top:444.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Create image with Gemini (Google Slides)</span></p>
<p style="top:476.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Create background images (Google Meet)</span></p>
<p style="top:508.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">gemini.google.com (with Google Workspace enterprise-grade security and privacy)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.8pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">7</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Customer service</span></b></p>
<p style="top:95.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As a customer service professional, you strive to </span></p>
<p style="top:111.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">deliver service that’s effortlessly efficient, consistently </span></p>
<p style="top:127.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">delightful, and powered by a proactive, helpful </span></p>
<p style="top:143.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">team. This section provides you with simple ways </span></p>
<p style="top:159.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">to integrate prompts in your daily tasks. Quickly </span></p>
<p style="top:175.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">build standardized communication frameworks, </span></p>
<p style="top:191.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">personalized communications, new training materials, </span></p>
<p style="top:207.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and more — all using Gemini for Google Workspace.</span></p>
<p style="top:242.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started </span></b></p>
<p style="top:277.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:293.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">this guide.</span></p>
<p style="top:325.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can </span></p>
<p style="top:341.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">collaborate with Gemini for Workspace. The prompt iteration example illustrates how you can continue to write </span></p>
<p style="top:357.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">prompts to build on the initial generated response. We also provide examples of how different customer service </span></p>
<p style="top:373.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">roles can use Gemini for Workspace. You can adjust each prompt to accomplish common tasks and refine the </span></p>
<p style="top:389.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">generated output.</span></p>
<p style="top:424.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:457.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re a customer service representative, and you’re responsible for responding directly to customer inquiries </span></p>
<p style="top:473.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and concerns. You just received an email from a customer who received damaged goods. You open a new </span></p>
<p style="top:489.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Google Doc and click on </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> to prompt Gemini in Docs. Type the following: </span></p>
<p style="top:521.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Help me craft an empathetic email response. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> I am a customer service representative, and I need to </span></p>
<p style="top:537.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> create a response to a customer complaint. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> The customer ordered a pair of headphones that arrived </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:553.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> damaged. They’ve already contacted us via email and provided pictures of the damage. I’ve offered </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:569.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> a replacement, but they’re requesting an expedited shipping option that isn’t typically included with </span></p>
<p style="top:585.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> their order. Include a paragraph that acknowledges their frustration and three bullet points with </span></p>
<p style="top:601.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> potential resolutions. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in Do</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">cs) </span></p>
<p style="top:657.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs: [Drafts email copy]</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:630.6pt;left:80.4pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:630.6pt;left:131.9pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:630.6pt;left:170.8pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:630.6pt;left:217.3pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">8</span></p>
<p style="top:360.0pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You like the email that Gemini in Docs created so you select Insert. But you want to brainstorm ways to resolve </span></p>
<p style="top:376.0pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the issue without offering expedited shipping. You prompt by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:408.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Suggest 10 alternative options </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> in place of expedited shipping to resolve the customer’s frustration </span></p>
<p style="top:424.0pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> about receiving the damaged package. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in D</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">ocs)</span></p>
<p style="top:456.0pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs: [List of 10 alternative solutions]</span></p>
<p style="top:56.3pt;left:77.6pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Docs</span></p>
<p style="top:495.8pt;left:77.6pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Docs</span></p>
<p style="top:728.9pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">These 10 suggestions are helpful. You click Insert to add the text into your draft. </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:553.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">9</span></p>
<p style="top:56.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt guide</span></b></p>
<p style="top:71.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Customer Service Manager or Representative</span></b></p>
<p style="top:85.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Standardize communication frameworks</span></b></p>
<p style="top:119.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re a customer service team manager. Your team has expanded, and you need to create scalable resources </span></p>
<p style="top:135.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">to standardize your communication across the team. You open a new Google Doc. You want to brainstorm, so </span></p>
<p style="top:151.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">you ask Gemini in Docs for help. You select</span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> and type:</span></p>
<p style="top:183.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft templates for three different types of customer communication. Create a template for apology </span></p>
<p style="top:199.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">emails, order confirmation messages, and thank you notes for loyal customers. Keep each template to </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:215.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">one paragraph and use a friendly tone. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:247.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The suggested templates offer a great starting point for you to begin editing and adding in a few more elements </span></p>
<p style="top:263.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">consistent with your company’s brand and policies. You select Insert. Now you want to create a document that </span></p>
<p style="top:279.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">outlines your team’s communication best practices to be used for onboarding. You open a new Google Doc and </span></p>
<p style="top:295.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">prompt Gemini in Docs. You type:</span></p>
<p style="top:327.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Craft a list of customer communication best practices that can be used to train new team members. </span></p>
<p style="top:343.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Outline three sections including how to handle happy customer inquiries, neutral customer inquiries, and </span></p>
<p style="top:359.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">dissatisfied customer inquiries. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Doc</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">s)</span></p>
<p style="top:391.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You also want to support the team with standardized language that they can use when interacting with </span></p>
<p style="top:407.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">customers on phone calls. You want to brainstorm, so you open gemini.google.com and type:</span></p>
<p style="top:439.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am a [customer service manager]. I am trying to create standardized language that the team can </span></p>
<p style="top:455.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">use when interacting with customers on phone calls. Generate templates for common call openings, </span></p>
<p style="top:471.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">greetings, and closures for a customer service representative at a retail store. These templates should </span></p>
<p style="top:487.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">allow for personalization with customer details. The goal is to ensure consistency and professionalism </span></p>
<p style="top:503.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">while allowing for differentiation with specific customer information. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(gemini.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">google.com)</span></p>
<p style="top:539.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Improve customer service</span></b></p>
<p style="top:573.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’ve noticed an uptick in customer complaints. You need to collaborate across departments to understand </span></p>
<p style="top:589.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">how you can address recurring issues. You start with an email to the other team leads. You prompt Gemini in </span></p>
<p style="top:605.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:637.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email to my colleagues proposing a meeting to discuss customer experience improvement </span></p>
<p style="top:653.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">initiatives. Request that marketing, sales, and product stakeholders meet in the next week to get a clear </span></p>
<p style="top:669.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">sense of roles and responsibilities. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini in Gmail)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.8pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">10</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You lightly copy edit the email and send it to your colleagues. Now that you’ve sent the initial email, you want to </span></p>
<p style="top:71.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">create a spreadsheet that you can use to track progress on this cross-departmental initiative. You open Google </span></p>
<p style="top:87.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Sheets and prompt Gemini in Sheets by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me organize</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:119.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a table to track the progress and impact of different customer experience improvement tactics </span></p>
<p style="top:135.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">using relevant metrics including support ticket volume and priority level (high, medium, low). </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:153.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Sheets)</span></p>
<p style="top:183.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You see a solid spreadsheet template with the categories you asked for already formatted. Now you just need to </span></p>
<p style="top:199.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">fill in specific details. </span></p>
<p style="top:236.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Customer Support Specialist</span></b></p>
<p style="top:250.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Enable customer self-service</span></b></p>
<p style="top:283.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As a customer support specialist, your team gets a lot of emails with questions about your return policy. </span></p>
<p style="top:299.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Customer feedback has consistently said your guidelines are unclear. You open a Google Doc that states the </span></p>
<p style="top:315.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">return, refund, and store credit policies. You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:347.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize this content to write a clear and concise product return policy and outline 5 steps for </span></p>
<p style="top:363.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">customers to take in sequential order. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini Docs)</span></p>
<p style="top:395.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You like how simple the steps are. You repeat the process for your refund policy and store credit policy. Now, </span></p>
<p style="top:411.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">you want to use the newly simplified content to create a blog post for customers. This blog post will outline your </span></p>
<p style="top:427.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">return, refund, and store credit policies. Using your Google Doc with the newly written guidance, you prompt </span></p>
<p style="top:443.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Google Docs. You type:</span></p>
<p style="top:475.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Take this content and turn it into a short blog with the title “Resolve Common Issues Without Agent </span></p>
<p style="top:491.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Assistance.” Have separate sections for our return policy, our refund policy, and our store credit policy.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> </span></p>
<p style="top:509.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:539.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now you want to create an email template that the team can use when they receive customer questions around </span></p>
<p style="top:555.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">these three areas. You open a new Google Doc and prompt Gemini in Docs. You type:</span></p>
<p style="top:587.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email template to a customer that highlights self-service resources [blog link] for [support </span></p>
<p style="top:603.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">issues]. Thank the customer for their business and assure them of our commitment to meeting their </span></p>
<p style="top:619.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">needs.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini in Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:551.9pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">11</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Voice of the customer research</span></b></p>
<p style="top:89.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Your new company policy is that you will email every dissatisfied customer to attempt to make things right. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:105.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You open an email that includes a customer complaint. You prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me </span></b><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></b></p>
<p style="top:121.6pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:153.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">R</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">equest a follow-up conversation on [date] at [time] with this customer who provided negative feedback </span></p>
<p style="top:169.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">to understand their concern and offer resolutions. Include example solutions. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini in Gmail)</span></p>
<p style="top:201.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The drafted response is a nice start, but the language is a little too direct in response to a complaint. You iterate </span></p>
<p style="top:217.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">by prompting Gemini in Gmail using Refine > Elaborate. Next, you want to create a short survey that you can </span></p>
<p style="top:233.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">send after each follow-up call you have with a customer to gauge how helpful the call was in addressing their </span></p>
<p style="top:249.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">needs. You open a new Google Doc and prompt Gemini in Docs. You type:</span></p>
<p style="top:281.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create five different questions to customers who have just spoken to an agent on the phone. Questions </span></p>
<p style="top:297.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">should gauge how effective the call was, if the customer’s concern was addressed, and if they would </span></p>
<p style="top:313.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">recommend our business to others. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini in Docs)</span></p>
<p style="top:350.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Client Services Coordinator</span></b></p>
<p style="top:364.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Engage with customers</span></b></p>
<p style="top:397.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’ve made a lot of progress in updating your policies and want to get feedback on the changes from your </span></p>
<p style="top:413.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">most loyal customers. You plan to host a listening tour to engage with them. You open Gmail and prompt Gemini </span></p>
<p style="top:429.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">in Gmail. You select </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> and type:</span></p>
<p style="top:461.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write an email inviting my most loyal customers to a feedback session next week at [location] on [date] at </span></p>
<p style="top:477.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[time] about our updated [policies]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">in Gmail)</span></p>
<p style="top:509.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The listening tour has ended, and you’ve received follow-up emails from attendees. You want help responding to </span></p>
<p style="top:525.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">each, so you prompt Gemini in Gmail. You type:</span></p>
<p style="top:557.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write a thank you note, personalized for [customer name] that thanks them for their attendance at </span></p>
<p style="top:573.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">the feedback session and explains how we will use feedback to improve our policies.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
<p style="top:610.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Prepare for client meetings</span></b></p>
<p style="top:643.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You need to prepare for a meeting with an important customer. Their account is new to you, as is their industry </span></p>
<p style="top:659.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and line of business. You need help researching, so you open gemini.google.com and you type: </span></p>
<p style="top:691.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write five questions I can use to research a company in the [industry] industry to understand the biggest </span></p>
<p style="top:707.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">challenges they face and prepare for the first meeting. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(gemin</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">i.google.com)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.7pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">12</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Using these questions, you continue your research with follow-up questions in your conversation with Gemini at </span></p>
<p style="top:71.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">gemini.google.com. You compile notes and findings into a Google Doc. </span></p>
<p style="top:87.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:103.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You have pages of notes, so you want to create an easy-to-digest summary for yourself. You prompt Gemini in </span></p>
<p style="top:119.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Docs. You type:</span></p>
<p style="top:151.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize findings about [industry] from this content and create talking points to discuss with the client.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> </span></p>
<p style="top:169.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in D</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">ocs)</span></p>
<p style="top:199.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now you feel ready to meet with the customer for the first time. You’re preparing to send your first introduction </span></p>
<p style="top:215.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">email. You open Gmail and prompt Gemini in Gmail. You select </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> and you type:</span></p>
<p style="top:247.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write an email introducing me as the client services coordinator for [account]. Ask my customer for a </span></p>
<p style="top:263.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">meeting about [topic], requesting dates and times in the next two weeks.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.7pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">13</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Executives and </span></b></p>
<p style="top:78.9pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">entrepreneurs</span></b></p>
<p style="top:117.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As an executive, your time is incredibly constrained </span></p>
<p style="top:133.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">as you chart the course for your organization. Every </span></p>
<p style="top:149.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">decision you make impacts growth, innovation, and </span></p>
<p style="top:165.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the overall trajectory of your business. Understanding </span></p>
<p style="top:181.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">your market, staying ahead of trends, and making </span></p>
<p style="top:197.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">informed, strategic calls is paramount, and so is </span></p>
<p style="top:213.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">getting urgent tasks done while you’re on the go. </span></p>
<p style="top:245.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This section introduces you to the power of AI-generated prompts designed to streamline your decision-making, </span></p>
<p style="top:261.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">help improve business outcomes, and assist you in getting your tasks done quickly — even if you’re not at your </span></p>
<p style="top:277.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">desk. Discover how Gemini for Google Workspace can help you unlock deep insights, foster collaboration, and </span></p>
<p style="top:293.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">propel your organization to new heights.</span></p>
<p style="top:328.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started</span></b></p>
<p style="top:359.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of this guide.</span></p>
<p style="top:387.7pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can collaborate </span></p>
<p style="top:401.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">with Gemini for Workspace. The prompt iteration example illustrates how you can continue to write prompts to build </span></p>
<p style="top:415.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">on the initial generated response. We also provide examples of how different leadership roles can use Gemini for </span></p>
<p style="top:429.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Workspace. You can adjust each prompt to accomplish common tasks and refine the generated output.</span></p>
<p style="top:462.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:493.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You are an executive about to board a long flight, and you just received an invitation for the next board meeting with </span></p>
<p style="top:507.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">an agenda. You have a couple of comments, and you want to propose adding a few topics to the agenda. You open </span></p>
<p style="top:521.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Gmail, and you prompt Gemini in Gmail. You type:</span></p>
<p style="top:551.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> D</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">raft an email </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">confirming that I will be at the board meeting. Ask if we can adjust the agenda to give </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:567.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> 15 minutes to [urgent topics]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gemini in Gmail)</span></p>
<p style="top:623.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Gmail: [Drafts an email]</span></p>
<p style="top:596.5pt;left:80.5pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:596.5pt;left:132.1pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:596.5pt;left:171.0pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:596.5pt;left:217.4pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.2pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">14</span></p>
<p style="top:309.5pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The email looks good, but you want to make sure the tone is as formal as possible. You select </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Refine > Formalize. </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:337.5pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Gemini in Gmail: [Formalizes tone]</span></p>
<p style="top:386.6pt;left:78.8pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Gmail</span></p>
<p style="top:63.9pt;left:78.8pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Gmail</span></p>
<p style="top:709.6pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You read the email, and select Insert. Before sending it, you make a light edit to thank the team for keeping you on </span></p>
<p style="top:723.6pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">track while traveling.</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.4pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">15</span></p>
<p style="top:56.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt guide</span></b></p>
<p style="top:85.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Chief Operating Officer</span></b></p>
<p style="top:99.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Prepare employee communications</span></b></p>
<p style="top:129.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You’re hosting a quarterly town hall meeting with the entire company. There’s been a lot of positive progress and </span></p>
<p style="top:143.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">momentum this quarter, but you’re worried that multiple teams have low morale after unforeseen setbacks. You </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:157.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">want to brainstorm and practice how you will respond to potentially tough questions. You open gemini.google.com, </span></p>
<p style="top:171.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">and you type:</span></p>
<p style="top:201.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">’m the COO of a mid-sized company. I am hosting a quarterly town hall meeting with the entire company. </span></p>
<p style="top:217.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">There has been a lot of positive progress and momentum this quarter, but I am worried that multiple teams </span></p>
<p style="top:233.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">have low morale due to some unforeseen setbacks. I want to brainstorm and practice how I will respond to </span></p>
<p style="top:249.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">potentially tough questions. Help me write challenging questions that employees may ask at the upcoming </span></p>
<p style="top:265.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">town hall about our earnings, leadership changes, and vision of the company. Generate potential answers </span></p>
<p style="top:281.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">for each question that use a confident but firm tone. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(gemini.google.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">com)</span></p>
<p style="top:309.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The questions and suggested answers are helpful for your preparation phase. Now, you want to gather ideas on how </span></p>
<p style="top:323.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">you can respond empathetically to questions, especially in uncertain times. You prompt again. You type:</span></p>
<p style="top:353.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">These questions and suggested answers are helpful in my preparation phase. Now, I want to gather ideas </span></p>
<p style="top:369.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">on how I can respond empathetically to questions, especially in uncertain times. Use a confident and </span></p>
<p style="top:385.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">reassuring tone to generate responses that acknowledge the concern and let the employees know that </span></p>
<p style="top:401.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">we are striving to do our best for the entire company. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:429.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You want to work backwards from these questions to figure out how you can write uplifting remarks to open the town </span></p>
<p style="top:443.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">hall. You decide to brainstorm with Gemini in Docs. You open a new Google Doc and select </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:473.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Help me write two uplifting paragraphs for employees who have just finished a challenging quarter. </span></p>
<p style="top:489.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Acknowledge [difficulties] and emphasize [positives] for the upcoming quarter. Use a tone that is </span></p>
<p style="top:505.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">motivating, optimistic, and fosters a sense of unity and collaboration.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemin</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">i in Docs)</span></p>
<p style="top:539.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Streamline responses on the go</span></b></p>
<p style="top:569.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Your plans have suddenly changed as you’re managing an urgent task. You can’t attend a meeting, and you just need </span></p>
<p style="top:583.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">to ensure the team has answers on a few key items. You open Gmail and use a voice command to prompt Gemini in </span></p>
<p style="top:597.9pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Gmail. You say: </span></p>
<p style="top:627.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email to [project lead] letting them know I will not be in the meeting due to an urgent matter. </span></p>
<p style="top:643.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Ask them to take detailed notes and to ensure the team arrives at a decision on [key topic] in addition </span></p>
<p style="top:659.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">to assigning ownership of the postmortem report to [colleague].</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">16</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Chief Marketing Officer</span></b></p>
<p style="top:70.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Brainstorm content and thought leadership</span></b></p>
<p style="top:100.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You just came out of a check-in with your social media team leads. You took a lot of notes in a Google Doc about </span></p>
<p style="top:114.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">what resonates with your audience, trending topics, target audience data, and keywords that are effective in driving </span></p>
<p style="top:128.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">engagement with your brand. You want to brainstorm potential thought leadership pieces using these insights. You </span></p>
<p style="top:142.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">prompt Gemini in Docs within your existing Google Doc by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:171.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate a list of four relevant and engaging thought leadership blog post ideas for [company] based on </span></p>
<p style="top:187.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">trending topics, target audience analysis, and brand keywords. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:216.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">During the same conversation, the team discussed launching a new brand campaign. You know that your customers </span></p>
<p style="top:230.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">value your reliable and unique services, and your company has a long history of delivering for customers. You need </span></p>
<p style="top:244.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">help getting started with ideas on a new campaign line. You open a new Google Doc and select </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. </span></p>
<p style="top:258.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You type:</span></p>
<p style="top:287.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate three options for a new slogan emphasizing reliability, innovation, and a long history of </span></p>
<p style="top:303.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">popularity for [company]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:332.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The slogans are helpful to get you started with the creative process. You have upcoming events that could be the </span></p>
<p style="top:346.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">perfect place to test elements of a new campaign. You want to mock up ideas for booth graphics for your events </span></p>
<p style="top:360.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">team. You open a new presentation in Google Slides and select </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Create image with Gemini</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:389.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">C</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">reate an image of a trade show booth using orange and blue colors. The booth should be modern and </span></p>
<p style="top:405.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">showcase interactive computer stations. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in S</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">lides) </span></p>
<p style="top:440.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Conduct competitive analysis</span></b></p>
<p style="top:470.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Your team is considering expanding into a new line of business. This is a new area for you, and you want to quickly </span></p>
<p style="top:484.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">gain insight into what this would mean for the business. You decide to do research. You go to gemini.google.com, </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:498.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">and you type:</span></p>
<p style="top:527.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am a CMO conducting a competitive analysis. My company is considering expanding into [a new line of </span></p>
<p style="top:543.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">business]. Generate a list of the top five competitors in the [industry] industry and include their #, </span></p>
<p style="top:559.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">strengths, weaknesses, and target audience. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:588.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">After going deeper in your research, you decide to create a fictitious five-year strategy to see what this could look like </span></p>
<p style="top:602.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">for the company. You type:</span></p>
<p style="top:631.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Okay, I am going to try to convince my CEO that we should expand into [line of business]. Draft a concise, </span></p>
<p style="top:647.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">competitive strategy for the next five years for the [industry] industry across North America markets with </span></p>
<p style="top:663.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">goals, strategies, and tactics. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.7pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">17</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Chief Technology Officer</span></b></p>
<p style="top:70.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Summarize emerging technology trends</span></b></p>
<p style="top:100.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You need to catch up on emerging technology trends as the landscape is shifting very quickly. You open </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:114.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">gemini.google.com, and you type:</span></p>
<p style="top:143.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am the CTO of [company] in [industry]. I want to understand emerging technology trends. Summarize </span></p>
<p style="top:159.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">the top five emerging technologies with the most significant potential impact on [industry]. For each </span></p>
<p style="top:175.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">technology, list its potential benefits and challenges, and suggest how it could impact [company] in the </span></p>
<p style="top:191.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">next two to three years. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:220.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The summary provided is a useful starting point for your initial research. You want to dig deeper on specific topics, </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:234.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">so you continue the conversation by typing:</span></p>
<p style="top:263.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Recommend three areas where [my organization] can take proactive steps to stay ahead of the curve on </span></p>
<p style="top:279.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[specific areas]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:316.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Chief Information Officer</span></b></p>
<p style="top:330.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Develop technical communications</span></b></p>
<p style="top:360.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Your team just provided a lengthy technical report on your security posture and key vulnerabilities. You need to </span></p>
<p style="top:374.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">address this immediately with the CEO, but you know a multi-page report is too much to digest at this time. You open </span></p>
<p style="top:388.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">the Google Doc with the full report, and you prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type: </span></p>
<p style="top:417.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize the key findings and implications of this report for [audience]. Focus on the main </span></p>
<p style="top:433.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[vulnerabilities] identified and the recommended actions to address them. Use a formal tone. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:451.2pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Doc</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">s)</span></p>
<p style="top:478.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The summary is helpful and provides the right level of detail for your CEO. You make light edits and put it at the top </span></p>
<p style="top:492.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">of the report as an executive summary. Now, you need to send an email to the CEO to schedule a meeting to discuss. </span></p>
<p style="top:506.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You open Gmail and prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type: </span></p>
<p style="top:535.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Help me write an email to my CEO requesting a 30-minute meeting next week to discuss our upcoming </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:551.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[IT changes]. Include considerations for scalability, security, and data management. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
<p style="top:586.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Track IT assets</span></b></p>
<p style="top:616.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Your company needs a quick way to track software access for new hires. You need a spreadsheet, so you open </span></p>
<p style="top:630.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Google Sheets and you select </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me organize</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. Then you type:</span></p>
<p style="top:659.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a tracker of software licenses for employees and include columns for license types, usage rights, </span></p>
<p style="top:675.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">and renewal dates. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Sheets)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">18</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Chief Human Resources Officer</span></b></p>
<p style="top:70.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Demonstrate employee appreciation</span></b></p>
<p style="top:100.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You want to set up a new program to help everyone feel included, appreciated, and acknowledged across the </span></p>
<p style="top:114.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">organization. But with a company this big, you want to be thoughtful in your approach. You want to brainstorm, </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:128.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">so you open a new Google Doc and prompt Gemini in Docs. You type:</span></p>
<p style="top:157.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Brainstorm 10 employee appreciation ideas based on company culture of [type] and diverse employee </span></p>
<p style="top:173.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">interests such as cooking, gardening, sports, reading, and traveling. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:202.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Gemini in Docs kick-starts your creativity, and now you have ideas for employee interest clubs and events. You also </span></p>
<p style="top:216.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">want to ensure your leadership team is regularly encouraging managers to recognize talent on their teams, so you </span></p>
<p style="top:230.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">create email templates they can use as inspiration. You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">, and </span></p>
<p style="top:244.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">you type:</span></p>
<p style="top:273.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email template that thanks [employee] for their hard work and [recent accomplishments]. Offer </span></p>
<p style="top:289.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">them an extra perk for their dedication, such as a coffee gift card. Use an upbeat and professional tone. </span></p>
<p style="top:307.2pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:340.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Assess employee satisfaction</span></b></p>
<p style="top:370.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You’re concerned that your team has been overwhelmed lately. Ahead of your call with your direct reports, you </span></p>
<p style="top:384.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">want to draft an anonymous survey that allows people to openly and honestly assess how they are feeling. To draft </span></p>
<p style="top:398.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">questions, you open a new Google Doc and prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:427.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an anonymous employee satisfaction survey with questions and answer options that touch upon </span></p>
<p style="top:443.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">key areas like workload, work-life balance, compensation, and career growth opportunities. Ensure the </span></p>
<p style="top:459.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">questions are clear, concise, and avoid leading answers. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:488.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You received feedback from 15 senior leaders, and you’ve gathered all of the anonymous results in a Google Doc. </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:502.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You want to create a summary that you can use in your next call. You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me </span></b></p>
<p style="top:516.0pt;left:54.0pt;line-height:9.5pt"><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:545.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize the results of the employee feedback to identify key themes. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Docs</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">)</span></p>
<p style="top:580.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Founder or Entrepreneur</span></b><b><span style="font-family:GoogleSans,serif;font-size:14.0pt"> </span></b></p>
<p style="top:594.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Develop a competitive analysis</span></b></p>
<p style="top:624.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You’re a founder of a startup, and your online business is gaining traction. You have always dreamed of opening a </span></p>
<p style="top:638.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">brick-and-mortar store, and now might be the perfect time. You want a thought partner to help you better understand </span></p>
<p style="top:652.0pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">the current landscape. You open gemini.google.com, and you type:</span></p>
<p style="top:681.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am a founder of a startup. I am considering opening a brick-and-mortar store. Conduct an analysis </span></p>
<p style="top:697.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">into the competitive landscape focusing on [focus area]. Provide the strengths and weaknesses of [key </span></p>
<p style="top:713.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">competitors] in this area, including their specific strategies, tactics, and results. Identify actionable </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">19</span></p>
<p style="top:55.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">insights and recommendations for how [my company] can improve its approach and gain a competitive </span></p>
<p style="top:71.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">advantage. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:100.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You gathered useful information from your discussion with Gemini at gemini.google.com. You want to go deeper in </span></p>
<p style="top:114.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">your brainstorming around two competitors in particular. You type: </span></p>
<p style="top:143.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate a competitive analysis of [company] versus [competitor] within the current market landscape. </span></p>
<p style="top:161.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:190.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You export your findings to a new Google Doc.</span></p>
<p style="top:224.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Conduct fundraising and investor relations</span></b></p>
<p style="top:254.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You’re ready to reach out to potential investors to make your brick-and-mortar store a reality. You want help getting </span></p>
<p style="top:268.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">started on an email to investors, so in the same Google Doc with all of your notes and research, you prompt Gemini in </span></p>
<p style="top:282.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type: </span></p>
<p style="top:311.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">D</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">raft a personalized email template to potential investors, highlighting [company’s] unique value </span></p>
<p style="top:327.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">proposition and recent progress on [initiatives]. Request a time to meet to discuss opportunities to </span></p>
<p style="top:343.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">collaborate in the next month.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in Doc</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">s)</span></p>
<p style="top:372.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">The email template gives you a starting place. You tweak the draft and continue to add a few personal touches before </span></p>
<p style="top:386.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">sending the email to the potential investors. After a successful meeting with them a month later, you want to draft a </span></p>
<p style="top:400.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">thank you message. You open your Google Doc with the meeting transcript and notes. You prompt Gemini in Docs to </span></p>
<p style="top:414.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">help you write an email draft. You type:</span></p>
<p style="top:443.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email thanking a potential investor for the call and ask for time to schedule a follow-up meeting </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:459.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">to address [questions and concerns]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> Docs)</span></p>
<p style="top:494.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Manage time off policies and tracking</span></b></p>
<p style="top:524.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You have a lengthy handbook detailing all of your company’s policies and procedures. You want to make the time-off </span></p>
<p style="top:538.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">request policy easily digestible for new hires. You open the Google Doc with the handbook. You prompt Gemini in </span></p>
<p style="top:552.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:581.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate a step-by-step checklist summarizing the company’s time-off request policy. Ensure it is written </span></p>
<p style="top:597.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">in plain language and easy for employees to understand.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:626.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You need a quick way to track staffing each week since many of your employees are shift-based. You open Google </span></p>
<p style="top:640.1pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Sheets and click </span><b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Help me organize</span></b><span style="font-family:GoogleSansText,serif;font-size:9.5pt">. You type:</span></p>
<p style="top:669.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a table that tracks weekly staffing. Create columns for date, name, shift (AM or PM), and notes.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> </span></p>
<p style="top:687.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Sheets)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:548.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">20</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Human resources</span></b></p>
<p style="top:91.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">As an HR professional, you’re the backbone of your </span></p>
<p style="top:105.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">organization and you deal with a large volume of </span></p>
<p style="top:119.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">confidential and sensitive information. You shape </span></p>
<p style="top:133.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">company culture, find and nurture talent, and ensure </span></p>
<p style="top:147.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">a positive employee experience. That’s no small feat. </span></p>
<p style="top:161.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">This section provides you with simple ways to integrate </span></p>
<p style="top:175.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">prompts in your day-to-day tasks. </span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:189.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:203.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Learning to write effective prompts will help improve </span></p>
<p style="top:217.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">your productivity and streamline your everyday tasks, </span></p>
<p style="top:231.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">giving you more time to focus on your most pressing </span></p>
<p style="top:245.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">tasks. Kick-start recruiting, onboarding, fostering a </span></p>
<p style="top:259.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">culture of belonging, and more — all using Gemini for </span></p>
<p style="top:273.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Google Workspace. For CHRO use cases, visit the </span></p>
<p style="top:287.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Executives and entrepreneurs section of this guide.</span></p>
<p style="top:320.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started </span></b></p>
<p style="top:351.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of this guide.</span><span style="font-family:GoogleSansText,serif;font-size:9.5pt"> </span></p>
<p style="top:379.7pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can collaborate </span></p>
<p style="top:393.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">with Gemini for Workspace. The prompt iteration example illustrates how you can continue to write prompts to build </span></p>
<p style="top:407.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">on the initial generated response. We also provide examples of how different HR roles can use Gemini for Workspace. </span></p>
<p style="top:421.8pt;left:54.0pt;line-height:9.5pt"><span style="font-family:GoogleSansText,serif;font-size:9.5pt">You can adjust each prompt to accomplish common tasks and refine the generated output.</span></p>
<p style="top:454.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:489.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re an HR manager working on building a presentation script for an employee meeting. You have a Google </span></p>
<p style="top:505.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Doc full of notes, bullet points, and topics that you would like to cover. You begin by opening your Google Doc </span></p>
<p style="top:521.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">with notes, and you use the following prompts for Gemini in Docs.</span></p>
<p style="top:553.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> I am an HR manager, and I am developing a script for my presentation for new hires. I need to create the </span></p>
<p style="top:569.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> script for an onboarding presentation about our company’s commitment to employee development and </span></p>
<p style="top:585.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> well-being. Help me draft talking points that showcase why employee mentorship and development are </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:601.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> core values for our company. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:657.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs: [Drafts talking points]</span></p>
<p style="top:630.4pt;left:80.5pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:630.4pt;left:132.0pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:630.4pt;left:170.9pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:630.4pt;left:217.4pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.8pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">21</span></p>
<p style="top:544.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You like what Gemini in Docs created, so you select Insert. Now, you want to add more targeted talking points. </span></p>
<p style="top:560.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">In the Google Doc, you highlight the notes related to training and certification programs and mentorship </span></p>
<p style="top:576.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">opportunities. You type: </span></p>
<p style="top:608.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Add four talking points for a new section of the presentation script that explains how we support </span></p>
<p style="top:624.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> our employees’ development. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Mention our training and certification programs and mentorship </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:640.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> opportunities. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:65.5pt;left:77.3pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Docs</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">22</span></p>
<p style="top:322.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs: [Adds talking points]</span></p>
<p style="top:354.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You select Insert. Now, you need ideas on how to frame the ending of the script. You highlight your notes on </span></p>
<p style="top:370.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">expected team behaviors in the Google Doc and you prompt Gemini in Docs with the following:</span></p>
<p style="top:402.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Write a strong closing statement </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">about our expectation that everyone contributes to a respectful and </span></p>
<p style="top:418.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">welcoming workplace. Use a professional tone. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:66.4pt;left:77.6pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Docs</span></p>
<p style="top:471.8pt;left:77.6pt;line-height:7.0pt"><span style="font-family:GoogleSansText,serif;font-size:7.0pt;color:#3b3e3f">Gemini in Docs</span></p>
<p style="top:677.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs: [Adds talking point]</span></p>
<p style="top:709.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The generated content has given you a head start on your script. You add in a few more details and then you’re </span></p>
<p style="top:725.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">ready to create a draft of the Google Slides that will accompany your talking points.</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">23</span></p>
<p style="top:56.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt guide</span></b></p>
<p style="top:87.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Recruiter</span></b></p>
<p style="top:101.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Manage the recruiting process</span></b></p>
<p style="top:133.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The business is growing, and you have a large hiring effort underway. First, you want to brainstorm with Gemini </span></p>
<p style="top:149.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">for Workspace to see how the company can better manage the recruiting process. You open the team’s </span></p>
<p style="top:165.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">“Recruiting Strategies” Google Doc, which includes notes on recruiting strategies and outlets in addition to </span></p>
<p style="top:181.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">email and message templates for cold outreach to candidates from LinkedIn and other sources. You begin with </span></p>
<p style="top:197.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the following prompt using Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type: </span></p>
<p style="top:229.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a list of strategies our recruiters can use to improve our existing recruiting process and identify </span></p>
<p style="top:245.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">potential job candidates.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:277.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">After successfully creating a short recommendation for leadership on how the team will improve existing </span></p>
<p style="top:293.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">recruiting processes, the team receives guidance for an urgent job opening for a content marketing manager </span></p>
<p style="top:309.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">with experience in B2B and B2C content creation, with a minimum of five years of experience, and a portfolio of </span></p>
<p style="top:325.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">writing examples. You open a new Google Doc and prompt Gemini in Docs with the following: </span></p>
<p style="top:357.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am opening a new job position on the marketing team. Write a compelling role description for a content </span></p>
<p style="top:373.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">marketing manager. Highlight key responsibilities [insert] and requirements including B2B and B2C content </span></p>
<p style="top:389.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">creation, a minimum of five years experience, and a portfolio of writing examples.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:421.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs generates a job description. After reviewing and making slight adjustments, you highlight the text </span></p>
<p style="top:437.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and prompt:</span></p>
<p style="top:469.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Suggest ways to update [job description] and provide suggestions to make it more compelling for </span></p>
<p style="top:485.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[audience].</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:521.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Manage the interview process</span></b></p>
<p style="top:555.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now, you want to prepare questions for phone screen interviews. The job descriptions have been approved and </span></p>
<p style="top:571.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">posted online. You decide to prepare by visiting gemini.google.com. You type: </span></p>
<p style="top:603.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am a recruiter, and I am preparing for candidate interviews. Write a list of 20 open-ended interview </span></p>
<p style="top:619.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">questions for [open role URL] that I can use to screen candidates.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:651.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">After the interview, you have one Google Doc full of notes from each candidate conversation. Using this Google </span></p>
<p style="top:667.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Doc, you prompt Gemini in Docs. You type:</span></p>
<p style="top:699.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize the interview notes and generate a shortlist of top candidates for the [position]. </span></p>
<p style="top:717.1pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Do</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">cs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.1pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">24</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">In the same Google Doc, you now want to summarize your findings on each candidate for the hiring manager. </span></p>
<p style="top:71.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:103.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate an email to the hiring manager with a summary of [candidates].</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in Docs</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">)</span></p>
<p style="top:140.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Candidate communication</span></b></p>
<p style="top:173.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The team has made its hiring decisions. You open the Google Doc with notes on each candidate. You prompt </span></p>
<p style="top:189.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:221.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am writing an email to job candidates that just finished the interview process. Create a template for </span></p>
<p style="top:237.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">an offer letter for the [selected candidate] for the [position] with a request to schedule a call to discuss </span></p>
<p style="top:253.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">benefits, compensation, and start date. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:285.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now, you want to generate personalized, empathetic email copy to send to the job candidates who will not </span></p>
<p style="top:301.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">receive an offer. You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:333.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I am writing an email to job candidates who finished the interview process, but who were not selected. </span></p>
<p style="top:349.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Help me write a rejection letter for [candidate] for the [position]. Use an empathetic tone. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:386.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">HR Manager</span></b></p>
<p style="top:400.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Onboard employees</span></b></p>
<p style="top:433.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re an HR manager. The recruiters have just filled the company’s two open roles. Now, you’re in charge of </span></p>
<p style="top:449.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">ensuring the candidates have a smooth onboarding experience. You need help in structuring information for the </span></p>
<p style="top:465.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">new hires, so you open Google Sheets and prompt Gemini in Sheets by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me organize</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:497.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a table that outlines a new employee’s first-week schedule, including key meetings, training </span></p>
<p style="top:513.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">sessions, and introductions. Provide a column for key contacts and priority level (low, medium, high) </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:529.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">for each activity. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Sheets</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">)</span></p>
<p style="top:559.7pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">Gemini in Sheets returns a formatted Google Sheet that you can now fill in with key contacts, meetings, and activities. </span></p>
<p style="top:573.2pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">The conditional formatting makes it easy for you to sort tasks by priority level with color-coded visual cues. Next, you </span></p>
<p style="top:586.6pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">need to create ways for the team to bond. You open a new Google Doc and prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">Help </span></b></p>
<p style="top:600.1pt;left:54.0pt;line-height:9.3pt"><b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">. You type:</span></p>
<p style="top:627.1pt;left:81.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt;color:#787e85">Design a team-bonding activity, such as an office scavenger hunt, to have team members work together </span></p>
<p style="top:640.5pt;left:81.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt;color:#787e85">during their team meeting. </span><span style="font-family:GoogleSansText,serif;font-size:7.8pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:7.8pt;color:#777f85">Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.3pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">25</span></p>
<p style="top:55.4pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">Gemini in Docs provides suggestions that get you brainstorming about the scavenger hunt. You tweak the outputs </span></p>
<p style="top:68.9pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">and get it approved by the team lead. Now, you need to communicate with the new hires to give them information </span></p>
<p style="top:82.3pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">about their first day when they will meet the team. You open Gmail and prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">Help </span></b></p>
<p style="top:95.8pt;left:54.0pt;line-height:9.3pt"><b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">me write</span></b><span style="font-family:GoogleSansText,serif;font-size:9.3pt">. You type:</span></p>
<p style="top:122.7pt;left:81.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt;color:#787e85">Draft an email to the new employees on the [team] to meet the rest of their team and explain the team-building </span></p>
<p style="top:136.2pt;left:81.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt;color:#787e85">purposes of the meeting.</span><span style="font-family:GoogleSansText,serif;font-size:7.8pt;color:#777f85"> (Gemini in G</span><span style="font-family:GoogleSansText,serif;font-size:7.8pt;color:#777f85">mail)</span></p>
<p style="top:168.9pt;left:54.0pt;line-height:11.8pt"><b><span style="font-family:GoogleSans,serif;font-size:11.8pt;color:#777f85">Use case: Communicate key findings and draft follow-up surveys </span></b></p>
<p style="top:197.8pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">Now that you’ve finished onboarding new employees, you need to focus on ensuring that the latest company </span></p>
<p style="top:211.3pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">research data is easily understood by leadership. You’re committed to creating a welcoming environment for all </span></p>
<p style="top:227.3pt;left:54.0pt;line-height:9.3pt"><span style="font-family:GoogleSansText,serif;font-size:9.3pt">employees where they can develop their skills. You open the Google Doc with the </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">finalized report. You prompt </span></p>
<p style="top:242.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:274.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email to senior leadership that summarizes the key findings from our [report]. Include a short </span></p>
<p style="top:290.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">introductory paragraph with bullet points on the most important findings. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:322.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs returns a summary with bullet points. You edit it and then use it to email the leadership team. </span></p>
<p style="top:338.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As a follow-up action, you want to understand how changes made to company policies impact the employee </span></p>
<p style="top:354.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">experience. You open Gemini in Docs to begin drafting a survey. You select </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> and type:</span></p>
<p style="top:386.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an anonymous employee survey with questions and answer options to monitor company progress </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:402.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">on [topics]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.3pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">26</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Marketing</span></b></p>
<p style="top:95.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As a marketing professional, you’re the creative force </span></p>
<p style="top:111.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">behind captivating campaigns, brand experiences, </span></p>
<p style="top:127.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">lead generation, and more. You understand the power </span></p>
<p style="top:143.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">of data-driven insights, compelling messaging, and </span></p>
<p style="top:159.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">connecting with your audience on a deeper level. </span></p>
<p style="top:191.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This section provides you with simple ways to integrate </span></p>
<p style="top:207.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">prompts in your day-to-day tasks. Learning to write </span></p>
<p style="top:223.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">effective prompts will help improve your productivity </span></p>
<p style="top:239.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and streamline your everyday tasks, giving you back </span></p>
<p style="top:255.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the time you need to focus on your more strategic </span></p>
<p style="top:271.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">work. Discover how to write prompts in a way that will </span></p>
<p style="top:287.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">help unlock new levels of creativity, automate insights, </span></p>
<p style="top:303.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and craft campaigns that resonate — all using Gemini </span></p>
<p style="top:319.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">for Google Workspace. For CMO use cases, visit the </span></p>
<p style="top:335.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Executives and entrepreneurs section of the guide.</span></p>
<p style="top:370.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started </span></b></p>
<p style="top:405.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:421.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">this guide.</span></p>
<p style="top:453.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can </span></p>
<p style="top:469.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">collaborate with Gemini for Workspace. The prompt iteration example illustrates how you can continue to </span></p>
<p style="top:485.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write prompts to build on the initial generated response. We also provide examples of how different marketing </span></p>
<p style="top:501.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">roles can use Gemini for Workspace. You can adjust each prompt to accomplish common tasks and refine the </span></p>
<p style="top:517.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">generated output.</span></p>
<p style="top:552.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:585.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You own your own consulting business and are often hired to function as a brand manager for your clients. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:601.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You help businesses in a variety of industries. Your customer is getting ready to launch a coffee shop and video </span></p>
<p style="top:617.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">game cafe, and you need to kick-start the creative process by developing a visual identity. You want to ideate </span></p>
<p style="top:633.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and provide early thoughts to the rest of the team. You decide to chat with Gemini at gemini.google.com. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:649.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You type:</span></p>
<p style="top:681.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Gen</span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">erate ideas for a creative and eye-catching logo for my new business, a coffee shop combined with </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:697.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> a video game cafe. Generate a logo considering the following: </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">27</span></p>
<p style="top:55.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Dual Concept: The logo needs to clearly signal both the coffee and gaming aspects of the business </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:71.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> without being too cluttered. </span></p>
<p style="top:103.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Target Audience: Appeal to a wide range of gamers (casual and enthusiast), as well as coffee lovers </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:119.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> seeking a unique hangout spot. </span></p>
<p style="top:151.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Style Options: I’m open to these approaches — let’s get a few examples in each of these three styles </span></p>
<p style="top:167.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> to compare: Modern and Playful: Bold colors, fun graphics, maybe a pixel art aesthetic. Retro-Cool: </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:183.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Think classic arcade style — chunky lettering, neon color inspiration. Sleek and Minimalist: Clean lines, </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:199.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> geometric shapes, a more subtle nod to both themes. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (gemini.google.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">com)</span></p>
<p style="top:213.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:266.8pt;left:77.6pt;line-height:6.7pt"><span style="font-family:GoogleSansText,serif;font-size:6.7pt;color:#3b3e3f">gemini.google.com</span></p>
<p style="top:594.3pt;left:77.6pt;line-height:6.7pt"><span style="font-family:GoogleSansText,serif;font-size:6.7pt;color:#3b3e3f">gemini.google.com</span></p>
<p style="top:508.8pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You like the retro-cool options. You continue your </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">conversation and you type:</span></p>
<p style="top:540.8pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> I like the retro-cool options. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Can you provide three more in that same style? </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:229.2pt;left:80.4pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:229.2pt;left:132.0pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:229.2pt;left:170.9pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:229.2pt;left:217.3pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.4pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">28</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now that you have a sense of what the logo could look like, you want to brainstorm names. You type:</span></p>
<p style="top:87.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Write a tagline and 10 potential names </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> for the business to go with these logos. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:422.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt guide</span></b></p>
<p style="top:445.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Brand Manager</span></b></p>
<p style="top:461.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Conduct market research and identify trends</span></b></p>
<p style="top:495.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The landscape in your industry is rapidly changing and you need to conduct market research to better identify </span></p>
<p style="top:511.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and understand emerging trends. You go to gemini.google.com, and you type:</span></p>
<p style="top:543.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I need to do market research on [industry] industry to identify new trends. Use [URLs] to uncover emerging </span></p>
<p style="top:559.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">trends and shifting consumer preferences. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:591.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">After completing your research, you and the team have updated your brand campaign to include new messaging </span></p>
<p style="top:607.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">that you want to A/B test. You decide to generate multiple variations of ad copy. You go to gemini.google.com </span></p>
<p style="top:623.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and type:</span></p>
<p style="top:655.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I need to A/B test new messaging. Here is our messaging: [messaging]. Generate three different variations </span></p>
<p style="top:671.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">of ad copy. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:141.0pt;left:77.6pt;line-height:6.7pt"><span style="font-family:GoogleSansText,serif;font-size:6.7pt;color:#3b3e3f">gemini.google.com</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.3pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">29</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Create and manage content and distribution</span></b></p>
<p style="top:89.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Another customer has some exciting leadership changes underway. You need to create content to shape the </span></p>
<p style="top:105.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">brand narrative of the company as it enters its next era. You open a Google Doc to get started on a blog draft. </span></p>
<p style="top:121.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:153.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a blog draft announcing that [name] is joining [company] as [position]. [Share two or three </span></p>
<p style="top:169.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">details from their bio, such as their previous position and company, their involvement in professional </span></p>
<p style="top:185.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">organizations, etc.]</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:217.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You also want a way to efficiently track how and where this content is amplified, so you open Google Sheets. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:233.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You prompt Gemini in Sheets by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me organize</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:265.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a project tracker for content amplification and include columns for channel, owner, URL, and </span></p>
<p style="top:281.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">priority level (low, medium, high). </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in S</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">heets)</span></p>
<p style="top:318.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Digital Marketing Manager</span></b></p>
<p style="top:332.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Draft customer acquisition communications </span></b></p>
<p style="top:365.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Email is one of your company’s main channels of direct communication with prospects and customers. You want </span></p>
<p style="top:381.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">help getting started with copy for a new email campaign. You open a new Google Doc, and you prompt Gemini in </span></p>
<p style="top:397.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:429.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write three different email subject lines that reference [audience segments] and our [product]. Make them </span></p>
<p style="top:445.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">catchy but professional.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:477.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Now you want to share the proposed email subject lines with the copywriting team. You open Gmail, and you </span></p>
<p style="top:493.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">select </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:525.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Help me write an email proposing [suggested email subject lines] to the copywriting team. Keep the email </span></p>
<p style="top:541.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">short and simple and request feedback by the end of week. Thank them for their help. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Gmail)</span></p>
<p style="top:578.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Generate inbound marketing campaigns</span></b></p>
<p style="top:611.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The team just created a new ebook on best practices for executives using our new solution. You’re creating a </span></p>
<p style="top:627.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">landing page to house the gated asset, and you need engaging copy. You open a new Google Doc and select </span></p>
<p style="top:643.6pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:675.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create compelling copy for a landing page promoting a new [ebook/webinar/free trial and details] </span></p>
<p style="top:691.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">designed for an executive target audience. Highlight key benefits and encourage conversions with </span></p>
<p style="top:707.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">persuasive calls to action.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:548.6pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">30</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The webpage launched, and you’re now running an inbound marketing campaign. You need to nurture the leads </span></p>
<p style="top:71.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">that downloaded your latest ebook. You open a new Google Doc, and you prompt Gemini in Docs by selecting </span></p>
<p style="top:87.7pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:119.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Generate copy for a sequence of five automated emails to nurture leads after they download the ebook </span></p>
<p style="top:135.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">on [topic]. Personalize emails with [name] and encourage further engagement [with other valuable </span></p>
<p style="top:151.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">resources or offers]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:188.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Content Marketing Manager</span></b></p>
<p style="top:202.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Generate inspiration for your blog </span></b></p>
<p style="top:235.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You work for a travel company as the content marketing manager for the company’s blog channel. You need </span></p>
<p style="top:251.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">to kick-start the brainstorming process for a new blog post. You decide to gather ideas by collaborating with </span></p>
<p style="top:267.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini at gemini.google.com. You type:</span></p>
<p style="top:299.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I need blog post topics that would be interesting for people passionate about travel and the tourism </span></p>
<p style="top:315.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">industry. Here’s what I want you to focus on: Make the topics unique. There are lots of tourism blogs out </span></p>
<p style="top:331.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">there — let’s come up with fresh angles that would stand out. Keep the topics relevant. Tap into current </span></p>
<p style="top:347.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">trends or recent challenges/innovations within the tourism industry when brainstorming. I’d like each topic </span></p>
<p style="top:363.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">to include: </span></p>
<p style="top:395.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Target audience: Who would this topic specifically appeal to? </span></p>
<p style="top:427.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Content outline: A few bullet points with the main ideas the blog post would discuss. </span></p>
<p style="top:459.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Call to action: Suggest one way to engage the reader at the end of the post.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:491.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You love the initial ideas you were able to create. You also need to focus on generating creative imagery to </span></p>
<p style="top:507.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">accompany the copy in the blog. You open a new Google Slide and you prompt Gemini in Slides by selecting </span></p>
<p style="top:523.7pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Create image with Gemini</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:555.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create an image of a plane flying above the clouds over mountains and rivers during sunrise that I can use </span></p>
<p style="top:571.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">in the marketing campaign to promote my travel company.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Slides)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:550.8pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">31</span></p>
<p style="top:56.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Create social media posts</span></b></p>
<p style="top:89.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re focused on creating content that is optimized for social media channels. You need to gather ideas for </span></p>
<p style="top:105.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">different content targeted to distinct audiences. You open a new Google Doc and prompt Gemini in Docs by </span></p>
<p style="top:121.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:153.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write three engaging social media posts about [product/service/topic] that would appeal to [target </span></p>
<p style="top:169.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">audience]. Keep each social media post to two sentences and include a call to action to visit [our website].</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> </span></p>
<p style="top:187.2pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:217.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You also need to craft social media posts to drive registration for an upcoming event targeting recent grads. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:233.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You open a new Google Doc and you prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:265.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a social media post promoting our upcoming [event name]. Include attention-grabbing language </span></p>
<p style="top:281.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">and relevant hashtags for [audience]. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:318.0pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Create a strategic marketing plan</span></b></p>
<p style="top:351.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Your company is launching a new app. You need a robust marketing plan, but you want ideas to get started. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:367.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You chat with Gemini by visiting gemini.google.com. You type:</span></p>
<p style="top:399.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I’m developing a marketing plan for a new app that provides [functionality]. My target audience is </span></p>
<p style="top:415.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">[audience]. Help me create a plan with a focus on [marketing channels]. Here’s what I’d like you to cover: </span></p>
<p style="top:431.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">competitor analysis, ideal marketing channel mix with rationale, budget recommendations, key messaging </span></p>
<p style="top:447.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">ideas, and proposed campaign timeline with KPIs.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:479.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The responses from your chat are helpful in shaping your marketing plan. While you finalize all of the details, you </span></p>
<p style="top:495.6pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">need to get the high-level details to your CMO. You open Gmail and prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help </span></b></p>
<p style="top:511.6pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:543.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email to the CMO telling them that I will provide a one-pager with a strategic marketing plan for </span></p>
<p style="top:559.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">the new app launch project by [date] and it will include an executive summary, overview of the competitive </span></p>
<p style="top:575.6pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">landscape, top marketing channels and the target demographic for all South American markets. </span></p>
<p style="top:593.2pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">32</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Project management</span></b></p>
<p style="top:95.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">As the conductor of complex, ever-evolving projects, </span></p>
<p style="top:111.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">your mission is to navigate timelines, coordinate </span></p>
<p style="top:127.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">teams, and ensure your programs deliver the </span></p>
<p style="top:143.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">intended impact. </span></p>
<p style="top:175.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This section introduces you to the power of Gemini </span></p>
<p style="top:191.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">for Google Workspace to help you learn the basics </span></p>
<p style="top:207.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">of prompting and optimize your project management </span></p>
<p style="top:223.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">workflow. Get ready to realize the efficiency, insight, </span></p>
<p style="top:239.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and proactive problem-solving that will help elevate </span></p>
<p style="top:255.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">your project outcomes using Gemini for Workspace. </span></p>
<p style="top:290.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started </span></b></p>
<p style="top:325.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:341.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">this guide.</span></p>
<p style="top:373.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can </span></p>
<p style="top:389.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">collaborate with Gemini for Workspace. The prompt iteration example illustrates how you can continue to </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:405.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write prompts to build on the initial generated response. You can continue to write prompts to build on the </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:421.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">initial generated response, and you can adjust each prompt to accomplish common tasks and refine the </span></p>
<p style="top:437.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">generated output. </span></p>
<p style="top:472.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:507.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Your team just completed the registration form for a new website, and now you need to generate some User </span></p>
<p style="top:523.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Acceptance Tests (UATs). To start a draft, you visit gemini.google.com and type:</span></p>
<p style="top:555.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Create a table with 10 User Acceptance Tests (UAT) </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> for the latest website registration form. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt"> </span></p>
<p style="top:573.0pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:597.3pt;left:80.4pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:597.3pt;left:132.0pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:597.3pt;left:170.9pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:597.3pt;left:217.3pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.4pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">33</span></p>
<p style="top:351.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You think the results are a helpful starting point, so you export the results to a Google Sheet before drafting an </span></p>
<p style="top:367.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">email to your colleague who is running the UATs. You want to explain what they need to do. You continue your </span></p>
<p style="top:383.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">conversation with Gemini at gemini.google.com. You type:</span></p>
<p style="top:415.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Draft an email to [my colleague] who is running this UAT and explain what they need to do next. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:433.1pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">gemini.google.com)</span></p>
<p style="top:66.9pt;left:77.6pt;line-height:6.7pt"><span style="font-family:GoogleSansText,serif;font-size:6.7pt;color:#3b3e3f">gemini.google.com</span></p>
<p style="top:478.3pt;left:77.6pt;line-height:6.7pt"><span style="font-family:GoogleSansText,serif;font-size:6.7pt;color:#3b3e3f">gemini.google.com</span></p>
<p style="top:710.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The drafted email provides a helpful starting point, so you export the results to Gmail, and you make edits </span></p>
<p style="top:726.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">directly before sending the message to your colleague.</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.0pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">34</span></p>
<p style="top:56.3pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt guide</span></b></p>
<p style="top:79.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt">Project Manager</span></b></p>
<p style="top:93.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Report on project status</span></b></p>
<p style="top:127.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You just had a lengthy call with all of your project stakeholders and now you want to summarize what was </span></p>
<p style="top:143.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">discussed and follow up with assigned action items. In the Google Doc with the meeting transcript, you prompt </span></p>
<p style="top:159.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:191.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize this call transcript in a short paragraph. In bullet points, highlight the action items, decisions </span></p>
<p style="top:207.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">made, and owners for each item based off of [call transcript].</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:239.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You need to update your manager based on the activity from the last call. You want to templatize how your </span></p>
<p style="top:255.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">project status updates are delivered. You open a new Google Doc, and you prompt Gemini in Docs by selecting </span></p>
<p style="top:271.5pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:303.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft a project status update email template to send to my manager. Include sections for a summary of </span></p>
<p style="top:319.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">key accomplishments this week, any challenges faced, and the top three priorities for next week.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> </span></p>
<p style="top:337.1pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:367.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The team just hit its key milestones an entire week early. It’s been a challenging project, so you want </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:383.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">to gather everyone to celebrate together. You open Gmail and prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me </span></b></p>
<p style="top:399.5pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:431.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Write an invitation for a team lunch to celebrate the progress made on a project and include [date, time, </span></p>
<p style="top:447.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">and location]. Thank them for all of their hard work and acknowledge that this has been a challenging </span></p>
<p style="top:463.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">project. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
<p style="top:499.9pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Create a project retrospective</span></b></p>
<p style="top:533.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’ve just wrapped the project, and your senior leadership team needs a project retrospective. To kick-start </span></p>
<p style="top:549.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the process of gathering feedback from across the broader team, you open a Google Doc and prompt Gemini in </span></p>
<p style="top:565.5pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:597.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">I need to write a report detailing the successes, failures, and lessons learned from [project]. Draft a </span></p>
<p style="top:613.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">list of 20 questions to guide a cross-team process investigation. Include questions to uncover what </span></p>
<p style="top:629.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">worked, what didn’t, specific process breakdowns, technical issues, communication gaps, or any </span></p>
<p style="top:645.5pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">other potential contributing factors to the problem or success of the project. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.2pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">35</span></p>
<p style="top:55.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">The questions provided by Gemini in Docs give you a great starting place. You edit them before sharing the </span></p>
<p style="top:71.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Google Doc with the team for their input. After you gather everyone’s feedback in the Google Doc, you want </span></p>
<p style="top:87.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">help structuring the report. You prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:119.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Summarize this document in two paragraphs. Include high-level information about the project’s goals, </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:135.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">the main contributors, what the outcomes of the project were, and any key successes or failures. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85"> </span></p>
<p style="top:153.3pt;left:81.0pt;line-height:8.0pt"><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Docs)</span></p>
<p style="top:188.1pt;left:54.0pt;line-height:12.0pt"><b><span style="font-family:GoogleSans,serif;font-size:12.0pt;color:#777f85">Use case: Develop an issue tracker and related communications</span></b></p>
<p style="top:221.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You need to create a project issue tracker to keep track of risks and solve them in a timely manner. You want to </span></p>
<p style="top:237.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">create a template quickly, so you open a new Google Sheet and prompt Gemini in Sheets by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me </span></b></p>
<p style="top:253.7pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">organize</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:285.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Create a spreadsheet to track project issues, including descriptions, status, assigned owner, and action </span></p>
<p style="top:301.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">items for resolution. </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in Sheet</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">s)</span></p>
<p style="top:333.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Before the project fully kicks off, you want to have standardized communication templates at your disposal. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:349.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">For example, you want an email that can be used if an issue arises. You open a new Google Doc and prompt </span></p>
<p style="top:365.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:397.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email template to announce when an issue arises and include causes, solutions, and timelines to </span></p>
<p style="top:413.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">resolve it.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini in Docs)</span></p>
<p style="top:445.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You like the template that Gemini in Docs creates, and you want to create an additional, slightly different email </span></p>
<p style="top:461.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">template. In the same Google Doc, you prompt Gemini in Docs by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:493.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">Draft an email template to a stakeholder to escalate a critical project issue, outlining the impact and </span></p>
<p style="top:509.7pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt;color:#787e85">proposed solution.</span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85"> (Gemini </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">in Docs)</span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.3pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">36</span></p>
<p style="top:57.0pt;left:54.0pt;line-height:18.0pt"><b><span style="font-family:GoogleSans,serif;font-size:18.0pt">Sales</span></b></p>
<p style="top:95.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Understanding your customers inside and out is your </span></p>
<p style="top:111.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">ticket to success. You’re in charge of maintaining </span></p>
<p style="top:127.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">critical relationships, deciphering buying signals, </span></p>
<p style="top:143.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">crafting tailored solutions, making data-driven calls, </span></p>
<p style="top:159.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">and more. </span></p>
<p style="top:191.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini for Google Workspace can help you redefine </span></p>
<p style="top:207.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">productivity and foster meaningful client connections. </span></p>
<p style="top:223.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This section provides practical prompts and real-world </span></p>
<p style="top:239.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">use cases designed specifically for you and your team. </span></p>
<p style="top:255.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Learning to write effective prompts will help improve </span></p>
<p style="top:271.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">your productivity and streamline your everyday tasks, </span></p>
<p style="top:287.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">giving you more time to focus on your customers by </span></p>
<p style="top:303.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">using Gemini for Workspace.</span></p>
<p style="top:338.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Getting started </span></b></p>
<p style="top:373.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">First, review the general prompt-writing tips on page 2 and the Prompting 101 section at the beginning of </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:389.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">this guide.</span></p>
<p style="top:421.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Each prompt below is presented with an accompanying scenario to serve as inspiration for how you can </span></p>
<p style="top:437.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">collaborate with Gemini for Workspace. The prompt iteration example illustrates how you can continue to </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:453.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write prompts to build on the initial generated response. We also provide examples of how different sales </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:469.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">roles can use Gemini for Workspace. You can adjust each prompt to accomplish common tasks and refine </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:485.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">the generated output.</span></p>
<p style="top:520.2pt;left:54.0pt;line-height:14.0pt"><b><span style="font-family:GoogleSans,serif;font-size:14.0pt">Prompt iteration example</span></b></p>
<p style="top:555.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You’re an account executive, and you’ve just been assigned to a new customer. You need a research assistant. </span></p>
<p style="top:571.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">You will need to get to know key contacts at the account to begin building trust between your teams, but first, </span></p>
<p style="top:587.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">you want to send an introductory email, so you open Gmail and prompt Gemini in Gmail by selecting </span><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Help me </span></b></p>
<p style="top:603.4pt;left:54.0pt;line-height:10.0pt"><b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">write</span></b><span style="font-family:GoogleSansText,serif;font-size:10.0pt">. You type:</span></p>
<p style="top:635.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Write an email to [name], the new [title] at [company]. Congratulate them on their new role. Introduce me </span></p>
<p style="top:651.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> as their contact point at [company name]. Invite them to lunch next week and check if they prefer Monday </span></p>
<p style="top:667.4pt;left:81.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> or Tuesday. </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">(Gemini in </span><span style="font-family:GoogleSansText,serif;font-size:8.0pt;color:#777f85">Gmail)</span></p>
<p style="top:723.4pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">Gemini in Gmail: [Drafts email]</span></p>
<p style="top:696.5pt;left:79.2pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Persona </span></p>
<p style="top:696.5pt;left:130.8pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Task </span></p>
<p style="top:696.5pt;left:169.7pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Context </span></p>
<p style="top:696.5pt;left:216.1pt;line-height:7.6pt"><span style="font-family:MinionPro,serif;font-size:7.6pt">• </span><span style="font-family:GoogleSansText,serif;font-size:7.6pt"> Format </span></p>
</div>
<div id="page0" style="width:612.0pt;height:792.0pt">
<p style="top:757.3pt;left:549.5pt;line-height:8.0pt"><span style="font-family:GoogleSans,serif;font-size:8.0pt;color:#5e6267">37</span></p>
<p style="top:373.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt">This provides a helpful starting point, but you want to try getting an even better response. You click </span><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> </span></p>
<p style="top:389.7pt;left:54.0pt;line-height:10.0pt"><span style="font-family:GoogleSansText,serif;font-size:10.0pt"> Refine > Formalize. </span></p>