-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
284 lines (239 loc) · 7.89 KB
/
index.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
require("dotenv").config();
const TelegramBot = require("node-telegram-bot-api");
const { createClient } = require("@supabase/supabase-js");
const { generateEmbedding } = require("./embeddings.js");
const token = process.env.TELEGRAM_BOT_TOKEN;
const bot = new TelegramBot(token, { polling: true });
const supabase = createClient(
process.env.SUPABASE_URL,
process.env.SUPABASE_KEY
);
let userMessages = {};
setInterval(() => {
userMessages = {};
}, 1000 * 60 * 60 * 24);
bot.onText(/\/start/, async (msg) => {
const chatId = msg.chat.id;
const sender = msg.from.id;
// Check if the user exists in the database
let { data: user, error } = await supabase
.from("users")
.select("name")
.eq("telegram_id", sender)
.single();
if (!user) {
await supabase
.from("users")
.insert([{ telegram_id: sender, name: msg.from.first_name }]);
bot.sendMessage(
chatId,
`Welcome ${msg.from.first_name}! You can now use the insert and search commands.`
);
} else {
bot.sendMessage(
chatId,
"Welcome back! You can use the insert and search commands."
);
}
});
bot.onText(/\/name (.+)/, async (msg, match) => {
const chatId = msg.chat.id;
const name = match[1];
const sender = msg.from.id;
await supabase.from("users").update({ name }).match({ telegram_id: sender });
bot.sendMessage(chatId, `Thanks, ${name}! Your name was updated.`);
});
bot.onText(/\/insert ([\s\S]+)/, async (msg, match) => {
const chatId = msg.chat.id;
const content = match[1];
const sender = msg.from.id;
const embeddingAwait = await generateEmbedding(content);
const embedding = embeddingAwait.embedding;
await supabase
.from("records")
.insert([{ telegram_id: sender, content, embedding }]);
bot.sendMessage(chatId, "Record inserted!");
});
// help message /help
bot.onText(/\/help/, async (msg) => {
const chatId = msg.chat.id;
bot.sendMessage(
chatId,
"Commands:\n" +
"/start - Start the bot\n" +
"/name [name] - Set your name\n" +
"/insert [content] - Insert a record\n" +
"[query] - Search for similar records\n" +
"/? - Three random records\n"
);
});
bot.onText(/\/\?/, async (msg) => {
const chatId = msg.chat.id;
const sender = msg.from.id;
// three random records
let { data, error } = await supabase.rpc("fetch_random_ids");
if (error) console.error(error);
else console.log(data);
// get the records by id
const records = await supabase
.from("records")
.select("content, telegram_id")
.in(
"id",
data.map((r) => r)
);
const results = [];
for await (let record of records.data) {
const result = {};
result.content = record.content.trim();
result.username = await getUsername(record.telegram_id);
results.push(result);
}
// choose random 3 records from the results
const random_results = [];
for (let i = 0; i < 3; i++) {
const random_index = Math.floor(Math.random() * results.length);
random_results.push(results[random_index]);
results.splice(random_index, 1);
}
if (random_results.length > 0) {
const reply = random_results
.map((r, idx) => `${r.content}\n\nby ${r.username}`)
.join("\n---\n");
bot.sendMessage(chatId, reply);
} else {
bot.sendMessage(chatId, "No results found.");
}
});
const getUsername = async (telegram_id) => {
const { data: user, error } = await supabase
.from("users")
.select("name")
.eq("telegram_id", telegram_id)
.single();
return user.name;
};
// expand search space
bot.onText(/\/expand/, async (msg) => {
// get last message from the user that is not a command
const chatId = msg.chat.id;
const sender = msg.from.id;
// get last message from the user that is not a command
if (userMessages[sender]) {
while (userMessages[sender].length > 0) {
const lastMessage = userMessages[sender].pop();
if (!lastMessage.text.startsWith("/")) {
const query = lastMessage.text.trim();
const query_embedding_await = await generateEmbedding(query);
const query_embedding = query_embedding_await.embedding;
const match_count = 1;
const match_threshold = 0.3;
let { data, error } = await supabase.rpc("semantic_search", {
match_count,
match_threshold,
query_embedding,
});
if (error) console.error(error);
else console.log(data);
const results = [];
for await (let record of data) {
const result = {};
result.content = record.content.trim();
result.username = await getUsername(record.telegram_id);
result.timestamp = record.created_at.toString().slice(0, 10);
results.push(result);
}
if (results.length > 0) {
const reply = results
.map(
(r, idx) =>
`${r.content}\n\nby ${r.username}\n\nwritten on ${r.timestamp}`
)
.join("\n---\n");
bot.sendMessage(chatId, reply);
} else {
bot.sendMessage(chatId, "No results found. Please add something about " + query + " to our Commonbase with /insert!");
}
}
}
}
});
bot.on("message", async (msg) => {
if (msg.text.startsWith("/")) return; // Ignore messages that are commands
const chatId = msg.chat.id;
const sender = msg.from.id;
const query = msg.text.trim();
if (!userMessages[sender]) {
userMessages[sender] = [];
}
userMessages[sender].push({ text: query, msg: msg });
const query_embedding_await = await generateEmbedding(query);
const query_embedding = query_embedding_await.embedding;
const match_count = 1;
const match_threshold = 0.5;
let { data, error } = await supabase.rpc("semantic_search", {
match_count,
match_threshold,
query_embedding,
});
if (error) console.error(error);
else console.log(data);
const results = [];
if (data.length === 0) {
bot.sendMessage(
chatId,
"No results found. Should I expand the search? Say \"/expand\" and I'll add more to my search space. Or can you add something about what you are looking for so I'll be able to surface it later with /insert? Help build our group chat Commonbase!"
);
return;
// if user says "expand", lower match threshold and try again
// bot.onText(/expand/, async (msg) => {
// const chatId = msg.chat.id;
// const match_threshold = 0.3;
// let { data, error } = await supabase.rpc("semantic_search", {
// match_count,
// match_threshold,
// query_embedding,
// });
// if (error) console.error(error);
// else console.log(data);
// for await (let record of data) {
// const result = {};
// result.content = record.content.trim();
// result.username = await getUsername(record.telegram_id);
// result.timestamp = record.created_at.toString().slice(0, 10);
// results.push(result);
// }
// if (results.length > 0) {
// const reply = results
// .map(
// (r, idx) =>
// `${r.content}\n\nby ${r.username}\n\nwritten on ${r.timestamp}`
// )
// .join("\n---\n");
// bot.sendMessage(chatId, reply);
// } else {
// bot.sendMessage(chatId, "No results found.");
// }
// });
} else {
for await (let record of data) {
const result = {};
result.content = record.content.trim();
result.username = await getUsername(record.telegram_id);
result.timestamp = record.created_at.toString().slice(0, 10);
results.push(result);
}
if (results.length > 0) {
const reply = results
.map(
(r, idx) =>
`${r.content}\n\nby ${r.username}\n\nwritten on ${r.timestamp}`
)
.join("\n---\n");
bot.sendMessage(chatId, reply);
} else {
bot.sendMessage(chatId, "No results found.");
}
}
});
console.log("Bot is running...");