Spaces:
Paused
Paused
File size: 15,086 Bytes
e28a7d6 | 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 | import { Elysia, error, t } from "elysia";
import { authPlugin } from "$api/authPlugin";
import { collections } from "$lib/server/database";
import { ObjectId } from "mongodb";
import { authCondition } from "$lib/server/auth";
import { models, validModelIdSchema } from "$lib/server/models";
import { convertLegacyConversation } from "$lib/utils/tree/convertLegacyConversation";
import type { Conversation } from "$lib/types/Conversation";
import { CONV_NUM_PER_PAGE } from "$lib/constants/pagination";
import pkg from "natural";
const { PorterStemmer } = pkg;
export const conversationGroup = new Elysia().use(authPlugin).group("/conversations", (app) => {
return app
.guard({
as: "scoped",
beforeHandle: async ({ locals }) => {
if (!locals.user?._id && !locals.sessionId) {
return error(401, "Must have a valid session or user");
}
},
})
.get(
"",
async ({ locals, query }) => {
const convs = await collections.conversations
.find(authCondition(locals))
.project<Pick<Conversation, "_id" | "title" | "updatedAt" | "model" | "assistantId">>({
title: 1,
updatedAt: 1,
model: 1,
assistantId: 1,
})
.sort({ updatedAt: -1 })
.skip((query.p ?? 0) * CONV_NUM_PER_PAGE)
.limit(CONV_NUM_PER_PAGE)
.toArray();
const nConversations = await collections.conversations.countDocuments(
authCondition(locals)
);
const res = convs.map((conv) => ({
_id: conv._id,
id: conv._id, // legacy param iOS
title: conv.title,
updatedAt: conv.updatedAt,
model: conv.model,
modelId: conv.model, // legacy param iOS
assistantId: conv.assistantId,
modelTools: models.find((m) => m.id == conv.model)?.tools ?? false,
}));
return { conversations: res, nConversations };
},
{
query: t.Object({
p: t.Optional(t.Number()),
}),
}
)
.delete("", async ({ locals }) => {
const res = await collections.conversations.deleteMany({
...authCondition(locals),
});
return res.deletedCount;
})
.get(
"/search",
async ({ locals, query }) => {
const searchQuery = query.q;
const p = query.p ?? 0;
if (!searchQuery || searchQuery.length < 3) {
return [];
}
if (!locals.user?._id && !locals.sessionId) {
throw new Error("Must have a valid session or user");
}
const convs = await collections.conversations
.find({
sessionId: undefined,
...authCondition(locals),
$text: { $search: searchQuery },
})
.sort({
updatedAt: -1, // Sort by date updated in descending order
})
.project<
Pick<
Conversation,
"_id" | "title" | "updatedAt" | "model" | "assistantId" | "messages" | "userId"
>
>({
title: 1,
updatedAt: 1,
model: 1,
assistantId: 1,
messages: 1,
userId: 1,
})
.skip(p * 5)
.limit(5)
.toArray()
.then((convs) =>
convs.map((conv) => {
let matchedContent = "";
let matchedText = "";
// Find the best match using stemming to handle MongoDB's text search behavior
let bestMatch = null;
let bestMatchLength = 0;
// Simple function to find the best match in content
const findBestMatch = (
content: string,
query: string
): { start: number; end: number; text: string } | null => {
const contentLower = content.toLowerCase();
const queryLower = query.toLowerCase();
// Try exact word boundary match first
const wordRegex = new RegExp(
`\\b${queryLower.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}\\b`,
"gi"
);
const wordMatch = wordRegex.exec(content);
if (wordMatch) {
return {
start: wordMatch.index,
end: wordMatch.index + wordMatch[0].length - 1,
text: wordMatch[0],
};
}
// Try simple substring match
const index = contentLower.indexOf(queryLower);
if (index !== -1) {
return {
start: index,
end: index + queryLower.length - 1,
text: content.substring(index, index + queryLower.length),
};
}
return null;
};
// Create search variations
const searchVariations = [searchQuery.toLowerCase()];
// Add stemmed variations
try {
const stemmed = PorterStemmer.stem(searchQuery.toLowerCase());
if (stemmed !== searchQuery.toLowerCase()) {
searchVariations.push(stemmed);
}
// Find actual words in conversations that stem to the same root
for (const message of conv.messages) {
if (message.content) {
const words = message.content.toLowerCase().match(/\b\w+\b/g) || [];
words.forEach((word: string) => {
if (
PorterStemmer.stem(word) === stemmed &&
!searchVariations.includes(word)
) {
searchVariations.push(word);
}
});
}
}
} catch (e) {
console.warn("Stemming failed for:", searchQuery, e);
}
// Add simple variations
const query = searchQuery.toLowerCase();
if (query.endsWith("s") && query.length > 3) {
searchVariations.push(query.slice(0, -1));
} else if (!query.endsWith("s")) {
searchVariations.push(query + "s");
}
// Search through all messages for the best match
for (const message of conv.messages) {
if (!message.content) continue;
// Try each variation in order of preference
for (const variation of searchVariations) {
const match = findBestMatch(message.content, variation);
if (match) {
const isExactQuery = variation === searchQuery.toLowerCase();
const priority = isExactQuery ? 1000 : match.text.length;
if (priority > bestMatchLength) {
bestMatch = {
content: message.content,
matchStart: match.start,
matchEnd: match.end,
matchedText: match.text,
};
bestMatchLength = priority;
// If we found exact query match, we're done
if (isExactQuery) break;
}
}
}
// Stop if we found an exact match
if (bestMatchLength >= 1000) break;
}
if (bestMatch) {
const { content, matchStart, matchEnd } = bestMatch;
matchedText = bestMatch.matchedText;
// Create centered context around the match
const maxContextLength = 160; // Maximum length of actual content (no padding)
const matchLength = matchEnd - matchStart + 1;
// Calculate context window - don't exceed maxContextLength even if content is longer
const availableForContext =
Math.min(maxContextLength, content.length) - matchLength;
const contextPerSide = Math.floor(availableForContext / 2);
// Calculate snippet boundaries to center the match within maxContextLength
let snippetStart = Math.max(0, matchStart - contextPerSide);
let snippetEnd = Math.min(
content.length,
matchStart + matchLength + contextPerSide
);
// Ensure we don't exceed maxContextLength
if (snippetEnd - snippetStart > maxContextLength) {
if (matchStart - contextPerSide < 0) {
// Match is near start, extend end but limit to maxContextLength
snippetEnd = Math.min(content.length, snippetStart + maxContextLength);
} else {
// Match is not near start, limit to maxContextLength from match start
snippetEnd = Math.min(content.length, snippetStart + maxContextLength);
}
}
// Adjust to word boundaries if possible (but don't move more than 15 chars)
const originalStart = snippetStart;
const originalEnd = snippetEnd;
while (
snippetStart > 0 &&
content[snippetStart] !== " " &&
content[snippetStart] !== "\n" &&
originalStart - snippetStart < 15
) {
snippetStart--;
}
while (
snippetEnd < content.length &&
content[snippetEnd] !== " " &&
content[snippetEnd] !== "\n" &&
snippetEnd - originalEnd < 15
) {
snippetEnd++;
}
// Extract the content
let extractedContent = content.substring(snippetStart, snippetEnd).trim();
// Add ellipsis indicators only
if (snippetStart > 0) {
extractedContent = "..." + extractedContent;
}
if (snippetEnd < content.length) {
extractedContent = extractedContent + "...";
}
matchedContent = extractedContent;
} else {
// Fallback: use beginning of the first message if no match found
const firstMessage = conv.messages[0];
if (firstMessage?.content) {
const content = firstMessage.content;
matchedContent =
content.length > 200 ? content.substring(0, 200) + "..." : content;
matchedText = searchQuery; // Fallback to search query
}
}
return {
_id: conv._id,
id: conv._id,
title: conv.title,
content: matchedContent,
matchedText,
updatedAt: conv.updatedAt,
model: conv.model,
assistantId: conv.assistantId,
modelTools: models.find((m) => m.id == conv.model)?.tools ?? false,
};
})
);
return convs;
},
{
query: t.Object({
q: t.String(),
p: t.Optional(t.Number()),
}),
}
)
.group(
"/:id",
{
params: t.Object({
id: t.String(),
}),
},
(app) => {
return app
.derive(async ({ locals, params }) => {
let conversation;
let shared = false;
// if the conver
if (params.id.length === 7) {
// shared link of length 7
conversation = await collections.sharedConversations.findOne({
_id: params.id,
});
shared = true;
if (!conversation) {
throw new Error("Conversation not found");
}
} else {
// todo: add validation on params.id
try {
new ObjectId(params.id);
} catch {
throw new Error("Invalid conversation ID format");
}
conversation = await collections.conversations.findOne({
_id: new ObjectId(params.id),
...authCondition(locals),
});
if (!conversation) {
const conversationExists =
(await collections.conversations.countDocuments({
_id: new ObjectId(params.id),
})) !== 0;
if (conversationExists) {
throw new Error(
"You don't have access to this conversation. If someone gave you this link, ask them to use the 'share' feature instead."
);
}
throw new Error("Conversation not found.");
}
}
const convertedConv = {
...conversation,
...convertLegacyConversation(conversation),
shared,
};
return { conversation: convertedConv };
})
.get("", async ({ conversation }) => {
return {
messages: conversation.messages,
title: conversation.title,
model: conversation.model,
preprompt: conversation.preprompt,
rootMessageId: conversation.rootMessageId,
assistant: conversation.assistantId
? ((await collections.assistants.findOne({
_id: new ObjectId(conversation.assistantId),
})) ?? undefined)
: undefined,
id: conversation._id.toString(),
updatedAt: conversation.updatedAt,
modelId: conversation.model,
assistantId: conversation.assistantId,
modelTools: models.find((m) => m.id == conversation.model)?.tools ?? false,
shared: conversation.shared,
};
})
.post("", () => {
// todo: post new message
throw new Error("Not implemented");
})
.delete("", async ({ locals, params }) => {
const res = await collections.conversations.deleteOne({
_id: new ObjectId(params.id),
...authCondition(locals),
});
if (res.deletedCount === 0) {
throw new Error("Conversation not found");
}
return { success: true };
})
.get("/output/:sha256", () => {
// todo: get output
throw new Error("Not implemented");
})
.post("/share", () => {
// todo: share conversation
throw new Error("Not implemented");
})
.post("/stop-generating", () => {
// todo: stop generating
throw new Error("Not implemented");
})
.patch(
"",
async ({ locals, params, body }) => {
if (body.model) {
if (!validModelIdSchema.safeParse(body.model).success) {
throw new Error("Invalid model ID");
}
}
// Only include defined values in the update
const updateValues = {
...(body.title !== undefined && { title: body.title }),
...(body.model !== undefined && { model: body.model }),
};
const res = await collections.conversations.updateOne(
{
_id: new ObjectId(params.id),
...authCondition(locals),
},
{
$set: updateValues,
}
);
if (res.modifiedCount === 0) {
throw new Error("Conversation not found");
}
return { success: true };
},
{
body: t.Object({
title: t.Optional(
t.String({
minLength: 1,
maxLength: 100,
})
),
model: t.Optional(t.String()),
}),
}
)
.delete(
"/message/:messageId",
async ({ locals, params, conversation }) => {
if (!conversation.messages.map((m) => m.id).includes(params.messageId)) {
throw new Error("Message not found");
}
const filteredMessages = conversation.messages
.filter(
(message) =>
// not the message AND the message is not in ancestors
!(message.id === params.messageId) &&
message.ancestors &&
!message.ancestors.includes(params.messageId)
)
.map((message) => {
// remove the message from children if it's there
if (message.children && message.children.includes(params.messageId)) {
message.children = message.children.filter(
(child) => child !== params.messageId
);
}
return message;
});
const res = await collections.conversations.updateOne(
{ _id: new ObjectId(conversation._id), ...authCondition(locals) },
{ $set: { messages: filteredMessages } }
);
if (res.modifiedCount === 0) {
throw new Error("Deleting message failed");
}
return { success: true };
},
{
params: t.Object({
id: t.String(),
messageId: t.String(),
}),
}
);
}
);
});
|