mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
convo selection handling in progress
This commit is contained in:
parent
c794287ced
commit
d35ed31b20
5 changed files with 32 additions and 10 deletions
|
|
@ -25,6 +25,10 @@ app.get('/convos', async (req, res) => {
|
|||
res.status(200).send(await getConversations());
|
||||
});
|
||||
|
||||
app.get('/messages', async (req, res) => {
|
||||
res.status(200).send(await getConversations());
|
||||
});
|
||||
|
||||
app.post('/ask', async (req, res) => {
|
||||
console.log(req.body);
|
||||
const { text, parentMessageId, conversationId } = req.body;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue