mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-15 10:50:31 +01:00
1846a99b93
* WIP embedded app * WIP got response from backend in embedded app * WIP streaming prints to embedded app * implemented streaming and tailwind min for styling into embedded app * WIP embedded app history functional * load params from script tag into embedded app * rough in modularization of embed chat cleanup dev process for easier dev support move all chat to components todo: build process todo: backend support * remove eslint config * Implement models and cleanup embed chat endpoints Improve build process for embed prod minification and bundle size awareness WIP * forgot files * rename to embed folder * introduce chat modal styles * add middleware validations on embed chat * auto open param and default greeting * reset chat history * Admin embed config page * Admin Embed Chats mgmt page * update embed * nonpriv * more style support reopen if chat was last opened * update comments * remove unused imports * allow change of workspace for embedconfig * update failure to lookup message * update reset script * update instructions * Add more styling options Add sponsor text at bottom Support dynamic container height Loading animations * publish new embed script * Add back syntax highlighting and keep bundle small via dynamic script build * add hint * update readme * update copy model for snippet with link to styles --------- Co-authored-by: timothycarambat <rambat1010@gmail.com>
81 lines
2.0 KiB
JavaScript
81 lines
2.0 KiB
JavaScript
import { API_BASE } from "@/utils/constants";
|
|
import { baseHeaders } from "@/utils/request";
|
|
|
|
const Embed = {
|
|
embeds: async () => {
|
|
return await fetch(`${API_BASE}/embeds`, {
|
|
method: "GET",
|
|
headers: baseHeaders(),
|
|
})
|
|
.then((res) => res.json())
|
|
.then((res) => res?.embeds || [])
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return [];
|
|
});
|
|
},
|
|
newEmbed: async (data) => {
|
|
return await fetch(`${API_BASE}/embeds/new`, {
|
|
method: "POST",
|
|
headers: baseHeaders(),
|
|
body: JSON.stringify(data),
|
|
})
|
|
.then((res) => res.json())
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return { embed: null, error: e.message };
|
|
});
|
|
},
|
|
updateEmbed: async (embedId, data) => {
|
|
return await fetch(`${API_BASE}/embed/update/${embedId}`, {
|
|
method: "POST",
|
|
headers: baseHeaders(),
|
|
body: JSON.stringify(data),
|
|
})
|
|
.then((res) => res.json())
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return { success: false, error: e.message };
|
|
});
|
|
},
|
|
deleteEmbed: async (embedId) => {
|
|
return await fetch(`${API_BASE}/embed/${embedId}`, {
|
|
method: "DELETE",
|
|
headers: baseHeaders(),
|
|
})
|
|
.then((res) => {
|
|
if (res.ok) return { success: true, error: null };
|
|
throw new Error(res.statusText);
|
|
})
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return { success: true, error: e.message };
|
|
});
|
|
},
|
|
chats: async (offset = 0) => {
|
|
return await fetch(`${API_BASE}/embed/chats`, {
|
|
method: "POST",
|
|
headers: baseHeaders(),
|
|
body: JSON.stringify({ offset }),
|
|
})
|
|
.then((res) => res.json())
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return [];
|
|
});
|
|
},
|
|
deleteChat: async (chatId) => {
|
|
return await fetch(`${API_BASE}/embed/chats/${chatId}`, {
|
|
method: "DELETE",
|
|
headers: baseHeaders(),
|
|
})
|
|
.then((res) => res.json())
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return { success: false, error: e.message };
|
|
});
|
|
},
|
|
};
|
|
|
|
export default Embed;
|