mirror of
https://github.com/open-webui/open-webui
synced 2024-11-17 14:02:51 +00:00
feat: import tools
This commit is contained in:
parent
1611a3aa70
commit
ca8be1ee4a
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user