mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 18:00:15 +01:00
109 lines
3 KiB
JavaScript
109 lines
3 KiB
JavaScript
|
|
const crypto = require('crypto');
|
||
|
|
const OpenAI = require('openai');
|
||
|
|
const { sendMessage } = require('../../utils');
|
||
|
|
const { initThread, createRun, handleRun } = require('../../services/AssistantService');
|
||
|
|
const express = require('express');
|
||
|
|
const router = express.Router();
|
||
|
|
const {
|
||
|
|
setHeaders,
|
||
|
|
// handleAbort,
|
||
|
|
// handleAbortError,
|
||
|
|
// validateEndpoint,
|
||
|
|
// buildEndpointOption,
|
||
|
|
// createAbortController,
|
||
|
|
} = require('../../middleware');
|
||
|
|
|
||
|
|
// const thread = {
|
||
|
|
// id: 'thread_LexzJUVugYFqfslS7c7iL3Zo',
|
||
|
|
// "thread_nZoiCbPauU60LqY1Q0ME1elg"
|
||
|
|
// };
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Chat with an assistant.
|
||
|
|
*/
|
||
|
|
router.post('/', setHeaders, async (req, res) => {
|
||
|
|
try {
|
||
|
|
console.log(req.body);
|
||
|
|
// test message:
|
||
|
|
// How many polls of 500 ms intervals are there in 18 seconds?
|
||
|
|
|
||
|
|
const { assistant_id, messages, text: userMessage, messageId } = req.body;
|
||
|
|
const conversationId = req.body.conversationId || crypto.randomUUID();
|
||
|
|
// let thread_id = req.body.thread_id ?? 'thread_nZoiCbPauU60LqY1Q0ME1elg'; // for testing
|
||
|
|
let thread_id = req.body.thread_id;
|
||
|
|
|
||
|
|
if (!assistant_id) {
|
||
|
|
throw new Error('Missing assistant_id');
|
||
|
|
}
|
||
|
|
|
||
|
|
const openai = new OpenAI(process.env.OPENAI_API_KEY);
|
||
|
|
console.log(messages);
|
||
|
|
|
||
|
|
const initThreadBody = {
|
||
|
|
messages: [
|
||
|
|
{
|
||
|
|
role: 'user',
|
||
|
|
content: userMessage,
|
||
|
|
metadata: {
|
||
|
|
messageId,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
metadata: {
|
||
|
|
conversationId,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
const result = await initThread({ openai, body: initThreadBody, thread_id });
|
||
|
|
// const { messages: _messages } = result;
|
||
|
|
thread_id = result.thread_id;
|
||
|
|
|
||
|
|
/* NOTE:
|
||
|
|
* By default, a Run will use the model and tools configuration specified in Assistant object,
|
||
|
|
* but you can override most of these when creating the Run for added flexibility:
|
||
|
|
*/
|
||
|
|
const run = await createRun({
|
||
|
|
openai,
|
||
|
|
thread_id,
|
||
|
|
body: { assistant_id, model: 'gpt-3.5-turbo-1106' },
|
||
|
|
});
|
||
|
|
const response = await handleRun({ openai, thread_id, run_id: run.id });
|
||
|
|
|
||
|
|
// TODO: parse responses, save to db, send to user
|
||
|
|
|
||
|
|
sendMessage(res, {
|
||
|
|
title: 'New Chat',
|
||
|
|
final: true,
|
||
|
|
conversation: {
|
||
|
|
conversationId: 'fake-convo-id',
|
||
|
|
title: 'New Chat',
|
||
|
|
},
|
||
|
|
requestMessage: {
|
||
|
|
messageId: 'fake-user-message-id',
|
||
|
|
parentMessageId: '00000000-0000-0000-0000-000000000000',
|
||
|
|
conversationId: 'fake-convo-id',
|
||
|
|
sender: 'User',
|
||
|
|
text: req.body.text,
|
||
|
|
isCreatedByUser: true,
|
||
|
|
},
|
||
|
|
responseMessage: {
|
||
|
|
messageId: 'fake-response-id',
|
||
|
|
conversationId: 'fake-convo-id',
|
||
|
|
parentMessageId: 'fake-user-message-id',
|
||
|
|
isCreatedByUser: false,
|
||
|
|
isEdited: false,
|
||
|
|
model: 'gpt-3.5-turbo-1106',
|
||
|
|
sender: 'Assistant',
|
||
|
|
text: response.choices[0].text,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
res.end();
|
||
|
|
} catch (error) {
|
||
|
|
// res.status(500).json({ error: error.message });
|
||
|
|
console.error(error);
|
||
|
|
res.end();
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = router;
|