-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.js
339 lines (297 loc) · 9.3 KB
/
code.js
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
/**
* Responds to an ADDED_TO_SPACE event in Google Chat.
* @param {object} event the event object from Google Chat
* @return {object} JSON-formatted response
* @see https://developers.google.com/chat/reference/message-formats/events
*/
function onAddToSpace(event) {
console.info(event);
var message = 'Thank you for adding me to ';
if (event.space.type === 'DM') {
message += 'a DM, ' + event.user.displayName + '!';
} else {
message += event.space.displayName;
}
console.log('Attendance Bot added in ', event.space.name);
return { text: message };
}
/**
* Responds to a REMOVED_FROM_SPACE event in Google Chat.
* @param {object} event the event object from Google Chat
* @see https://developers.google.com/chat/reference/message-formats/events
*/
function onRemoveFromSpace(event) {
console.info(event);
console.log('Bot removed from ', event.space.name);
}
var DEFAULT_IMAGE_URL = 'https://goo.gl/bMqzYS';
var HEADER = {
header: {
title : 'Weekly Planner',
subtitle : 'Plan Your Week!',
imageUrl : DEFAULT_IMAGE_URL
}
};
/**
* Creates a card-formatted response.
* @param {object} widgets the UI components to send
* @return {object} JSON-formatted response
*/
function createCardResponse(card_sections) {
return {
cardsV2: [{
card:
{
HEADER,
sections: card_sections
}
}]
};
}
/**
* Responds to a MESSAGE event triggered in Google Chat.
* @param {object} event the event object from Google Chat
* @return {object} JSON-formatted response
*/
function onMessage(event) {
console.info(event);
var name = event.user.displayName;
var userMessage = event.message.text;
var sections = [
{
"widgets": [
{"textParagraph": {
"text": 'Hello, ' + name + '.<br>Are you ready to plan your week?'
}
}
]
},
{
"header": "Config Input data",
"collapsible": true,
"widgets": [
,{
"selectionInput": {
"name": "includedUserData",
"label": "Select which data to include",
"type": "SWITCH",
"items": [
{
"text": "Priority Inbox",
"value": "email",
"selected": true
},
{
"text": "Tasks",
"value": "tasks",
"selected": true
},
{
"text": "Calendar Events",
"value": "agenda",
"selected": true
}
]
}
},
{
"textInput": {
"name": 'pastDays',
"label": 'Past Days to Include',
"value": "7"
}
},
{
"textInput": {
"name": 'futureDays',
"label": 'Future Days to Include',
"value": "7"
}
},{
textParagraph: {
"text": 'To include meeting notes, Please add document ids below separated by a comma'
}
},
{
"textInput": {
"name": 'notes_docs',
"label": 'meeting notes docs ids'
}
},{
"buttonList": {
"buttons": [
, {
"text": "Prepare User Data",
"onClick": {
"action": {
"function": "prepUserData",
"parameters": [
]
}
}
},{
"text": "Clear Cache",
"onClick": {
"action": {
"function": "clearCache",
"parameters": [
]
}
}
}
]
}
}
]
},
{
"header": "Actions",
"widgets": [
{
"textInput": {
"name": 'instructions',
"label": 'Additional instructions for Gemini'
}
},
{
"buttonList": {
"buttons": [
{
"text": "Custom instructions",
"onClick": {
"action": {
"function": "customAction",
"parameters": [
]
}
}
},
{
"text": "Plan my Week",
"onClick": {
"action": {
"function": "planWeekAhead",
"parameters": [
]
}
}
},
{
"text": "Summarise last week",
"onClick": {
"action": {
"function": "summeriseLastWeek",
"parameters": [
]
}
}
},
{
"text": "Suggest meeting Agendas",
"onClick": {
"action": {
"function": "suggestAgenda",
"parameters": [
]
}
}
}
]
}
}
]
}
];
return createCardResponse(sections);
}
/**
* Responds to a CARD_CLICKED event triggered in Google Chat.
* @param {object} event the event object from Google Chat
* @return {object} JSON-formatted response
* @see https://developers.google.com/chat/reference/message-formats/events
*/
function onCardClick(event) {
console.info(event);
var name = event.user.displayName;
var cache = CacheService.getScriptCache();
if (event.action.actionMethodName=="clearCache")
{
cache.removeAll(['email','pastMeetings', 'fututeMeetings', 'tasks', 'notes'])
return { text: "Cached cleared" };
}
var userData = ""
if (event.common.formInputs.includedUserData[""].stringInputs.value.indexOf("email")!== -1){
console.log ("Please wait while I fetch relevant meetings, notes and emails ...")
var emails =""
if (cache.get('email'))
{
emails = cache.get('email')
}else{
emails = getImportantEmailThreads(event.common.formInputs.pastDays[""].stringInputs.value[0])
cache.put('email',emails)
}
userData = userData + "\n Here is a record of emails that are relevant during the last week: \n" + emails + "\n END OF EMAIL RECORDS. \n"
console.log(emails)
console.log("Done fetching emails")
}
if (event.common.formInputs.includedUserData[""].stringInputs.value.indexOf("agenda")!== -1){
var pastDays = event.common.formInputs.pastDays[""].stringInputs.value[0]
var futureDays = event.common.formInputs.futureDays[""].stringInputs.value[0]
var past_meetings = ""
if (cache.get('pastMeetings')){
past_meetings = cache.get('pastMeetings')
}else{
past_meetings = getMeetingsFast(pastDays, "past", name)
cache.put('pastMeetings', past_meetings)
}
console.log("Done fetching pasts")
console.log(past_meetings)
var future_meetings = ""
if (cache.get('futureMeetings')){
past_meetings = cache.get('futureMeetings')
}else{
future_meetings = getMeetingsFast(pastDays, "future", name)
cache.put('futureMeetings', future_meetings)
}
console.log("Done fetching future")
console.log(future_meetings)
userData = userData + "Here is a record of past meeting titles and agendas: \n" + past_meetings + "\n END OF PAST MEETING RECORDS. \n \n Here are my future meetings: \n" + future_meetings + "\n END OF FUTURE MEETINGS. \n"
}
if (event.common.formInputs.notes_docs[""].stringInputs.value[0]){
notes_docs = event.common.formInputs.notes_docs[""].stringInputs.value[0].split(',')
console.log (notes_docs)
var notes = ""
if (cache.get('notes')){
notes = cache.get('notes')
} else{
notes = extractTextFromDocs(notes_docs, 0, 4000)
cache.put('notes', notes)
}
userData = userData + "Here are the most important notes for my customers - consider only the most recent notes and recent meetings: \n " + notes + "\n END OF CUSTOMER NOTES. \n"
console.log("Done fetching Notes")
console.log(notes)
}
if (event.common.formInputs.includedUserData[""].stringInputs.value.indexOf("tasks")!== -1){
var myTasks = ""
if (cache.get('tasks')){
myTasks = cache.get('tasks')
}else{
myTasks = list_the_tasks()
cache.put('tasks',myTasks)
}
console.log(myTasks)
userData = userData + "\n Here are my Tasks : \n "+ myTasks + "\n END OF TASKS. \n"
}
if (event.action.actionMethodName=="prepUserData")
{
return { text: "User Data is now Cached" };
}
var userIdentity = "I am " + name + " a Sales Engineer working for Google Cloud. My overall goal is too keep my customers happy and making sure they can use our products"
var customPrompt = event.common.formInputs.instructions[""].stringInputs.value[0]
var agentIdentity = ""
var instructions = buildInstruction (event.action.actionMethodName, userData, userIdentity, agentIdentity, customPrompt)
console.log("THE FINAL INSTRUCTIONS: \n")
console.log(instructions)
var message = TalkToGemini(instructions);
return { text: message };
}