mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
* feat: make assistants endpoint appendable since message state is not managed by LibreChat * fix(ask): search currentMessages for thread_id if it's not defined * refactor(abortMiddleware): remove use of `overrideProps` and spread unknown fields instead * chore: remove console.log in `abortConversation` * refactor(assistants): improve error handling/cancellation flow
87 lines
2.7 KiB
JavaScript
87 lines
2.7 KiB
JavaScript
const { CacheKeys, RunStatus, isUUID } = require('librechat-data-provider');
|
|
const { initializeClient } = require('~/server/services/Endpoints/assistant');
|
|
const { checkMessageGaps, recordUsage } = require('~/server/services/Threads');
|
|
const { getConvo } = require('~/models/Conversation');
|
|
const getLogStores = require('~/cache/getLogStores');
|
|
const { sendMessage } = require('~/server/utils');
|
|
// const spendTokens = require('~/models/spendTokens');
|
|
const { logger } = require('~/config');
|
|
|
|
async function abortRun(req, res) {
|
|
res.setHeader('Content-Type', 'application/json');
|
|
const { abortKey } = req.body;
|
|
const [conversationId, latestMessageId] = abortKey.split(':');
|
|
|
|
if (!isUUID.safeParse(conversationId).success) {
|
|
logger.error('[abortRun] Invalid conversationId', { conversationId });
|
|
return res.status(400).send({ message: 'Invalid conversationId' });
|
|
}
|
|
|
|
const cacheKey = `${req.user.id}:${conversationId}`;
|
|
const cache = getLogStores(CacheKeys.ABORT_KEYS);
|
|
const runValues = await cache.get(cacheKey);
|
|
const [thread_id, run_id] = runValues.split(':');
|
|
|
|
if (!run_id) {
|
|
logger.warn('[abortRun] Couldn\'t find run for cancel request', { thread_id });
|
|
return res.status(204).send({ message: 'Run not found' });
|
|
} else if (run_id === 'cancelled') {
|
|
logger.warn('[abortRun] Run already cancelled', { thread_id });
|
|
return res.status(204).send({ message: 'Run already cancelled' });
|
|
}
|
|
|
|
let runMessages = [];
|
|
/** @type {{ openai: OpenAI }} */
|
|
const { openai } = await initializeClient({ req, res });
|
|
|
|
try {
|
|
await cache.set(cacheKey, 'cancelled');
|
|
const cancelledRun = await openai.beta.threads.runs.cancel(thread_id, run_id);
|
|
logger.debug('[abortRun] Cancelled run:', cancelledRun);
|
|
} catch (error) {
|
|
logger.error('[abortRun] Error cancelling run', error);
|
|
if (
|
|
error?.message?.includes(RunStatus.CANCELLED) ||
|
|
error?.message?.includes(RunStatus.CANCELLING)
|
|
) {
|
|
return res.end();
|
|
}
|
|
}
|
|
|
|
try {
|
|
const run = await openai.beta.threads.runs.retrieve(thread_id, run_id);
|
|
await recordUsage({
|
|
...run.usage,
|
|
model: run.model,
|
|
user: req.user.id,
|
|
conversationId,
|
|
});
|
|
} catch (error) {
|
|
logger.error('[abortRun] Error fetching or processing run', error);
|
|
}
|
|
|
|
runMessages = await checkMessageGaps({
|
|
openai,
|
|
latestMessageId,
|
|
thread_id,
|
|
run_id,
|
|
conversationId,
|
|
});
|
|
|
|
const finalEvent = {
|
|
title: 'New Chat',
|
|
final: true,
|
|
conversation: await getConvo(req.user.id, conversationId),
|
|
runMessages,
|
|
};
|
|
|
|
if (res.headersSent && finalEvent) {
|
|
return sendMessage(res, finalEvent);
|
|
}
|
|
|
|
res.json(finalEvent);
|
|
}
|
|
|
|
module.exports = {
|
|
abortRun,
|
|
};
|