ABCDEFGHIJKLMNOPQRSTUV
1
Instructions
2
3
0. Click File > Make a copy to clone this template
4
5
1. Create an account at https://openai.com/api/
6
7
2. Browse to https://beta.openai.com/account/api-keys, create a new secret key, and copy it to your clipboard
8
9
3. Click Extensions > App Script, paste your secret key where indicated, remember to save the changes
10
11
4. Type =GPT3( or =GPT3_RANGE( in any cell. Check out the examples below.
12
13
14
GPT3() Example
15
16
Full NameNickname
17
Donald Draper
← After completing the Instructions section above, try typing: =GPT3("What is a nickname for the full name "&A17&"?")
18
Peggy Olson
19
Roger Sterling
20
Joan Harris
21
22
23
GPT3_RANGE() Example
24
25
ItemColor
26
AppleRed
27
BananaYellow
28
AvocadoGreen
29
Eggplant
← After completing the Instructions section above, try typing: =GPT3_RANGE($A$26:$A$28,$B$26:$B$28,A29)
30
Lime
31
32
ItemColor
33
France
34
USA
35
UK
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