Commit ca8be1ee authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

feat: import tools

parent 1611a3aa
......@@ -8,7 +8,7 @@
import { createNewPrompt, deletePromptByCommand, getPrompts } from '$lib/apis/prompts';
import { goto } from '$app/navigation';
import { deleteToolById, exportTools, getTools } from '$lib/apis/tools';
import { createNewTool, deleteToolById, exportTools, getTools } from '$lib/apis/tools';
const i18n = getContext('i18n');
......@@ -186,8 +186,18 @@
const reader = new FileReader();
reader.onload = async (event) => {
const tools = JSON.parse(event.target.result);
console.log(tools);
const _tools = JSON.parse(event.target.result);
console.log(_tools);
for (const tool of _tools) {
const res = await createNewTool(localStorage.token, tool).catch((error) => {
toast.error(error);
return null;
});
}
toast.success('Tool imported successfully');
tools.set(await getTools(localStorage.token));
};
reader.readAsText(importFiles[0]);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment