From 19b67f4975da1c7c8bcb02982b43e52b33a60b62 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 18 Jun 2024 10:23:04 -0700 Subject: [PATCH] feat: functions scaffold --- src/lib/components/workspace/Functions.svelte | 358 ++++++++++++++++++ .../workspace/Functions/FunctionEditor.svelte | 0 src/routes/(app)/workspace/+layout.svelte | 9 + .../(app)/workspace/functions/+page.svelte | 5 + .../workspace/functions/create/+page.svelte | 57 +++ .../workspace/functions/edit/+page.svelte | 66 ++++ 6 files changed, 495 insertions(+) create mode 100644 src/lib/components/workspace/Functions.svelte create mode 100644 src/lib/components/workspace/Functions/FunctionEditor.svelte create mode 100644 src/routes/(app)/workspace/functions/+page.svelte create mode 100644 src/routes/(app)/workspace/functions/create/+page.svelte create mode 100644 src/routes/(app)/workspace/functions/edit/+page.svelte diff --git a/src/lib/components/workspace/Functions.svelte b/src/lib/components/workspace/Functions.svelte new file mode 100644 index 000000000..f00e9ad2f --- /dev/null +++ b/src/lib/components/workspace/Functions.svelte @@ -0,0 +1,358 @@ + + + + + {$i18n.t('Functions')} | {$WEBUI_NAME} + + + +
+
{$i18n.t('Functions')}
+
+ +
+
+
+ + + +
+ +
+ +
+ + + + + +
+
+
+ +
+ {#each $tools.filter((t) => query === '' || t.name + .toLowerCase() + .includes(query.toLowerCase()) || t.id.toLowerCase().includes(query.toLowerCase())) as tool} + + + + + + + + + + +
+ + {/each} + + + + +
+
+ { + console.log(importFiles); + showConfirm = true; + }} + /> + + + + +
+
+ + { + const reader = new FileReader(); + reader.onload = async (event) => { + 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]); + }} +> +
+
+
Please carefully review the following warnings:
+ +
    +
  • Tools have a function calling system that allows arbitrary code execution.
  • +
  • Do not install tools from sources you do not fully trust.
  • +
+
+ +
+ I acknowledge that I have read and I understand the implications of my action. I am aware of + the risks associated with executing arbitrary code and I have verified the trustworthiness of + the source. +
+
+
diff --git a/src/lib/components/workspace/Functions/FunctionEditor.svelte b/src/lib/components/workspace/Functions/FunctionEditor.svelte new file mode 100644 index 000000000..e69de29bb diff --git a/src/routes/(app)/workspace/+layout.svelte b/src/routes/(app)/workspace/+layout.svelte index bb891d010..02647fbb8 100644 --- a/src/routes/(app)/workspace/+layout.svelte +++ b/src/routes/(app)/workspace/+layout.svelte @@ -74,6 +74,15 @@ {$i18n.t('Tools')} + + {$i18n.t('Functions')} + + +
+ +
+ +{/if}