2024-06-20 07:54:58 +00:00
|
|
|
<script>
|
|
|
|
|
import { getContext, createEventDispatcher, onMount } from 'svelte';
|
2024-06-20 08:07:55 +00:00
|
|
|
import { goto } from '$app/navigation';
|
2024-06-20 07:54:58 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
const dispatch = createEventDispatcher();
|
2024-06-20 07:54:58 +00:00
|
|
|
const i18n = getContext('i18n');
|
|
|
|
|
|
|
|
|
|
import CodeEditor from '$lib/components/common/CodeEditor.svelte';
|
|
|
|
|
import ConfirmDialog from '$lib/components/common/ConfirmDialog.svelte';
|
|
|
|
|
|
|
|
|
|
let formElement = null;
|
|
|
|
|
let loading = false;
|
|
|
|
|
let showConfirm = false;
|
|
|
|
|
|
|
|
|
|
export let edit = false;
|
|
|
|
|
export let clone = false;
|
|
|
|
|
|
|
|
|
|
export let id = '';
|
|
|
|
|
export let name = '';
|
|
|
|
|
export let meta = {
|
|
|
|
|
description: ''
|
|
|
|
|
};
|
|
|
|
|
export let content = '';
|
|
|
|
|
|
|
|
|
|
$: if (name && !edit && !clone) {
|
|
|
|
|
id = name.replace(/\s+/g, '_').toLowerCase();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let codeEditor;
|
2024-06-20 08:44:52 +00:00
|
|
|
let boilerplate = `from pydantic import BaseModel
|
|
|
|
|
from typing import Optional
|
2024-06-20 07:54:58 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
class Filter:
|
2024-06-20 08:44:52 +00:00
|
|
|
class Valves(BaseModel):
|
|
|
|
|
max_turns: int
|
|
|
|
|
pass
|
|
|
|
|
|
2024-06-20 07:54:58 +00:00
|
|
|
def __init__(self):
|
2024-06-20 08:44:52 +00:00
|
|
|
# Indicates custom file handling logic. This flag helps disengage default routines in favor of custom
|
|
|
|
|
# implementations, informing the WebUI to defer file-related operations to designated methods within this class.
|
|
|
|
|
self.file_handler = True
|
|
|
|
|
|
|
|
|
|
# Initialize 'valves' with specific configurations. Using 'Valves' instance helps encapsulate settings,
|
|
|
|
|
# which ensures settings are managed cohesively and not confused with operational flags like 'file_handler'.
|
|
|
|
|
self.valves = self.Valves(**{"max_turns": 10})
|
2024-06-20 07:54:58 +00:00
|
|
|
pass
|
|
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
def inlet(self, body: dict, user: Optional[dict] = None) -> dict:
|
2024-06-20 08:44:52 +00:00
|
|
|
# Modify the request body or validate it before processing by the chat completion API.
|
|
|
|
|
# This function is the pre-processor for the API where various checks on the input can be performed.
|
|
|
|
|
# It can also modify the request before sending it to the API.
|
|
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
print("inlet")
|
|
|
|
|
print(body)
|
|
|
|
|
print(user)
|
2024-06-20 07:54:58 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
if user.get("role", "admin") in ["user"]:
|
|
|
|
|
messages = body.get("messages", [])
|
|
|
|
|
if len(messages) > self.max_turns:
|
|
|
|
|
raise Exception(
|
|
|
|
|
f"Conversation turn limit exceeded. Max turns: {self.max_turns}"
|
|
|
|
|
)
|
2024-06-20 07:54:58 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
return body
|
2024-06-20 07:54:58 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
def outlet(self, body: dict, user: Optional[dict] = None) -> dict:
|
2024-06-20 08:44:52 +00:00
|
|
|
# Modify or analyze the response body after processing by the API.
|
|
|
|
|
# This function is the post-processor for the API, which can be used to modify the response
|
|
|
|
|
# or perform additional checks and analytics.
|
2024-06-20 08:07:55 +00:00
|
|
|
print(f"outlet")
|
|
|
|
|
print(body)
|
|
|
|
|
print(user)
|
2024-06-20 08:12:09 +00:00
|
|
|
|
2024-06-20 08:07:55 +00:00
|
|
|
return body`;
|
2024-06-20 07:54:58 +00:00
|
|
|
|
|
|
|
|
const saveHandler = async () => {
|
|
|
|
|
loading = true;
|
|
|
|
|
dispatch('save', {
|
|
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
meta,
|
|
|
|
|
content
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const submitHandler = async () => {
|
|
|
|
|
if (codeEditor) {
|
|
|
|
|
const res = await codeEditor.formatPythonCodeHandler();
|
|
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
|
console.log('Code formatted successfully');
|
|
|
|
|
saveHandler();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div class=" flex flex-col justify-between w-full overflow-y-auto h-full">
|
|
|
|
|
<div class="mx-auto w-full md:px-0 h-full">
|
|
|
|
|
<form
|
|
|
|
|
bind:this={formElement}
|
|
|
|
|
class=" flex flex-col max-h-[100dvh] h-full"
|
|
|
|
|
on:submit|preventDefault={() => {
|
|
|
|
|
if (edit) {
|
|
|
|
|
submitHandler();
|
|
|
|
|
} else {
|
|
|
|
|
showConfirm = true;
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div class="mb-2.5">
|
|
|
|
|
<button
|
|
|
|
|
class="flex space-x-1"
|
|
|
|
|
on:click={() => {
|
2024-06-20 08:07:55 +00:00
|
|
|
goto('/workspace/functions');
|
2024-06-20 07:54:58 +00:00
|
|
|
}}
|
|
|
|
|
type="button"
|
|
|
|
|
>
|
|
|
|
|
<div class=" self-center">
|
|
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
viewBox="0 0 20 20"
|
|
|
|
|
fill="currentColor"
|
|
|
|
|
class="w-4 h-4"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
fill-rule="evenodd"
|
|
|
|
|
d="M17 10a.75.75 0 01-.75.75H5.612l4.158 3.96a.75.75 0 11-1.04 1.08l-5.5-5.25a.75.75 0 010-1.08l5.5-5.25a.75.75 0 111.04 1.08L5.612 9.25H16.25A.75.75 0 0117 10z"
|
|
|
|
|
clip-rule="evenodd"
|
|
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<div class=" self-center font-medium text-sm">{$i18n.t('Back')}</div>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex flex-col flex-1 overflow-auto h-0 rounded-lg">
|
|
|
|
|
<div class="w-full mb-2 flex flex-col gap-1.5">
|
|
|
|
|
<div class="flex gap-2 w-full">
|
|
|
|
|
<input
|
|
|
|
|
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
|
|
|
|
|
type="text"
|
2024-06-20 08:07:55 +00:00
|
|
|
placeholder="Function Name (e.g. My Filter)"
|
2024-06-20 07:54:58 +00:00
|
|
|
bind:value={name}
|
|
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<input
|
|
|
|
|
class="w-full px-3 py-2 text-sm font-medium disabled:text-gray-300 dark:disabled:text-gray-700 bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
|
|
|
|
|
type="text"
|
2024-06-20 08:07:55 +00:00
|
|
|
placeholder="Function ID (e.g. my_filter)"
|
2024-06-20 07:54:58 +00:00
|
|
|
bind:value={id}
|
|
|
|
|
required
|
|
|
|
|
disabled={edit}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
|
|
|
|
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
|
|
|
|
|
type="text"
|
2024-06-20 08:07:55 +00:00
|
|
|
placeholder="Function Description (e.g. A filter to remove profanity from text)"
|
2024-06-20 07:54:58 +00:00
|
|
|
bind:value={meta.description}
|
|
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-2 flex-1 overflow-auto h-0 rounded-lg">
|
|
|
|
|
<CodeEditor
|
|
|
|
|
bind:value={content}
|
|
|
|
|
bind:this={codeEditor}
|
|
|
|
|
{boilerplate}
|
|
|
|
|
on:save={() => {
|
|
|
|
|
if (formElement) {
|
|
|
|
|
formElement.requestSubmit();
|
|
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="pb-3 flex justify-between">
|
|
|
|
|
<div class="flex-1 pr-3">
|
|
|
|
|
<div class="text-xs text-gray-500 line-clamp-2">
|
2024-06-20 08:07:55 +00:00
|
|
|
<span class=" font-semibold dark:text-gray-200">Warning:</span> Functions allow
|
|
|
|
|
arbitrary code execution <br />—
|
2024-06-20 07:54:58 +00:00
|
|
|
<span class=" font-medium dark:text-gray-400"
|
2024-06-20 08:07:55 +00:00
|
|
|
>don't install random functions from sources you don't trust.</span
|
2024-06-20 07:54:58 +00:00
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
class="px-3 py-1.5 text-sm font-medium bg-emerald-600 hover:bg-emerald-700 text-gray-50 transition rounded-lg"
|
|
|
|
|
type="submit"
|
|
|
|
|
>
|
|
|
|
|
{$i18n.t('Save')}
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ConfirmDialog
|
|
|
|
|
bind:show={showConfirm}
|
|
|
|
|
on:confirm={() => {
|
|
|
|
|
submitHandler();
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<div class="text-sm text-gray-500">
|
|
|
|
|
<div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3">
|
|
|
|
|
<div>Please carefully review the following warnings:</div>
|
|
|
|
|
|
|
|
|
|
<ul class=" mt-1 list-disc pl-4 text-xs">
|
2024-06-20 08:07:55 +00:00
|
|
|
<li>Functions allow arbitrary code execution.</li>
|
|
|
|
|
<li>Do not install functions from sources you do not fully trust.</li>
|
2024-06-20 07:54:58 +00:00
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="my-3">
|
|
|
|
|
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.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ConfirmDialog>
|