| <script> |
| import { getContext, tick, onMount } from 'svelte'; |
| import { page } from '$app/stores'; |
| import { goto } from '$app/navigation'; |
| import { toast } from 'svelte-sonner'; |
| |
| import { config } from '$lib/stores'; |
| import { getBackendConfig } from '$lib/apis'; |
| import Database from './Settings/Database.svelte'; |
| |
| import General from './Settings/General.svelte'; |
| import Pipelines from './Settings/Pipelines.svelte'; |
| import Audio from './Settings/Audio.svelte'; |
| import Images from './Settings/Images.svelte'; |
| import Interface from './Settings/Interface.svelte'; |
| import Models from './Settings/Models.svelte'; |
| import Connections from './Settings/Connections.svelte'; |
| import Documents from './Settings/Documents.svelte'; |
| import WebSearch from './Settings/WebSearch.svelte'; |
| |
| import Evaluations from './Settings/Evaluations.svelte'; |
| import CodeExecution from './Settings/CodeExecution.svelte'; |
| import Tools from './Settings/Tools.svelte'; |
| |
| import ChartBar from '../icons/ChartBar.svelte'; |
| import DocumentChartBar from '../icons/DocumentChartBar.svelte'; |
| import Search from '../icons/Search.svelte'; |
| import XMark from '../icons/XMark.svelte'; |
| |
| const i18n = getContext('i18n'); |
| |
| let selectedTab = 'general'; |
| |
| |
| $: { |
| const pathParts = $page.url.pathname.split('/'); |
| const tabFromPath = pathParts[pathParts.length - 1]; |
| selectedTab = [ |
| 'general', |
| 'connections', |
| 'models', |
| 'evaluations', |
| 'tools', |
| 'documents', |
| 'web', |
| 'code-execution', |
| 'interface', |
| 'audio', |
| 'images', |
| 'pipelines', |
| 'db' |
| ].includes(tabFromPath) |
| ? tabFromPath |
| : 'general'; |
| } |
| |
| $: if (selectedTab) { |
| // scroll to selectedTab |
| scrollToTab(selectedTab); |
| } |
| |
| const scrollToTab = (tabId) => { |
| const tabElement = document.getElementById(tabId); |
| if (tabElement) { |
| tabElement.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'start' }); |
| } |
| }; |
| |
| let search = ''; |
| let searchDebounceTimeout; |
| let filteredSettings = []; |
| |
| const allSettings = [ |
| { |
| id: 'general', |
| title: 'General', |
| route: '/admin/settings/general', |
| keywords: [ |
| 'general', |
| 'admin', |
| 'settings', |
| 'version', |
| 'update', |
| 'language', |
| 'theme', |
| 'data', |
| 'users', |
| 'roles', |
| 'ldap', |
| 'authentication', |
| 'reverse proxy', |
| 'webhook', |
| 'community', |
| 'channels' |
| ] |
| }, |
| { |
| id: 'connections', |
| title: 'Connections', |
| route: '/admin/settings/connections', |
| keywords: [ |
| 'connections', |
| 'ollama', |
| 'openai', |
| 'api', |
| 'base url', |
| 'direct connections', |
| 'proxy', |
| 'key' |
| ] |
| }, |
| { |
| id: 'models', |
| title: 'Models', |
| route: '/admin/settings/models', |
| keywords: [ |
| 'models', |
| 'pull', |
| 'delete', |
| 'create', |
| 'edit', |
| 'modelfile', |
| 'gguf', |
| 'import', |
| 'export' |
| ] |
| }, |
| { |
| id: 'evaluations', |
| title: 'Evaluations', |
| route: '/admin/settings/evaluations', |
| keywords: ['evaluations', 'feedback', 'rating', 'arena', 'leaderboard', 'preference'] |
| }, |
| { |
| id: 'tools', |
| title: 'External Tools', |
| route: '/admin/settings/tools', |
| keywords: ['tools', 'plugins', 'extensions', 'functions', 'openapi', 'server'] |
| }, |
| { |
| id: 'documents', |
| title: 'Documents', |
| route: '/admin/settings/documents', |
| keywords: [ |
| 'documents', |
| 'files', |
| 'rag', |
| 'knowledge', |
| 'upload', |
| 'embedding', |
| 'vector db', |
| 'chunk', |
| 'overlap', |
| 'splitter', |
| 'pdf', |
| 'ocr', |
| 'tika', |
| 'docling', |
| 'unstructured' |
| ] |
| }, |
| { |
| id: 'web', |
| title: 'Web Search', |
| route: '/admin/settings/web', |
| keywords: [ |
| 'web search', |
| 'google', |
| 'bing', |
| 'duckduckgo', |
| 'serp', |
| 'searxng', |
| 'moojeh', |
| 'yacy', |
| 'serper', |
| 'serply', |
| 'tavily', |
| 'exa', |
| 'perplexity', |
| 'firecrawl' |
| ] |
| }, |
| { |
| id: 'code-execution', |
| title: 'Code Execution', |
| route: '/admin/settings/code-execution', |
| keywords: ['code execution', 'python', 'sandbox', 'compiler', 'jupyter', 'interpreter'] |
| }, |
| { |
| id: 'interface', |
| title: 'Interface', |
| route: '/admin/settings/interface', |
| keywords: [ |
| 'interface', |
| 'ui', |
| 'appearance', |
| 'banners', |
| 'tasks', |
| 'prompt suggestions', |
| 'title generation', |
| 'tags' |
| ] |
| }, |
| { |
| id: 'audio', |
| title: 'Audio', |
| route: '/admin/settings/audio', |
| keywords: [ |
| 'audio', |
| 'voice', |
| 'speech', |
| 'tts', |
| 'stt', |
| 'whisper', |
| 'deepgram', |
| 'azure', |
| 'openai', |
| 'elevenlabs' |
| ] |
| }, |
| { |
| id: 'images', |
| title: 'Images', |
| route: '/admin/settings/images', |
| keywords: [ |
| 'images', |
| 'generation', |
| 'dalle', |
| 'stable diffusion', |
| 'comfyui', |
| 'automatic1111', |
| 'gemini' |
| ] |
| }, |
| { |
| id: 'pipelines', |
| title: 'Pipelines', |
| route: '/admin/settings/pipelines', |
| keywords: ['pipelines', 'workflows', 'filters', 'valves', 'middleware'] |
| }, |
| { |
| id: 'db', |
| title: 'Database', |
| route: '/admin/settings/db', |
| keywords: ['database', 'export', 'import', 'backup', 'chats', 'users'] |
| } |
| ]; |
| |
| const setFilteredSettings = () => { |
| filteredSettings = allSettings.filter((tab) => { |
| const searchTerm = search.toLowerCase().trim(); |
| return ( |
| search === '' || |
| tab.title.toLowerCase().includes(searchTerm) || |
| tab.keywords.some((keyword) => keyword.includes(searchTerm)) |
| ); |
| }); |
| }; |
| |
| const searchDebounceHandler = () => { |
| if (searchDebounceTimeout) { |
| clearTimeout(searchDebounceTimeout); |
| } |
| |
| searchDebounceTimeout = setTimeout(() => { |
| setFilteredSettings(); |
| }, 100); |
| }; |
| |
| onMount(() => { |
| const containerElement = document.getElementById('admin-settings-tabs-container'); |
| |
| if (containerElement) { |
| containerElement.addEventListener('wheel', function (event) { |
| if (event.deltaY !== 0) { |
| // Adjust horizontal scroll position based on vertical scroll |
| containerElement.scrollLeft += event.deltaY; |
| } |
| }); |
| } |
| |
| setFilteredSettings(); |
| |
| scrollToTab(selectedTab); |
| }); |
| </script> |
|
|
| <div class="flex flex-col lg:flex-row w-full h-full pb-2 lg:space-x-4"> |
| <div |
| id="admin-settings-tabs-container" |
| class="tabs mx-[16px] lg:mx-0 lg:px-[16px] flex flex-row overflow-x-auto gap-2.5 max-w-full lg:gap-1 lg:flex-col lg:flex-none lg:w-50 dark:text-gray-200 text-sm font-medium text-left scrollbar-none" |
| > |
| <div |
| class="hidden md:flex w-full rounded-full px-2.5 gap-2 bg-gray-100/80 dark:bg-gray-850/80 backdrop-blur-2xl my-1 -mx-1 mt-1.5" |
| id="settings-search" |
| > |
| <div class="self-center rounded-l-xl bg-transparent"> |
| <Search className="size-3.5" strokeWidth="1.5" /> |
| </div> |
| <label class="sr-only" for="search-input-settings-modal">{$i18n.t('Search')}</label> |
| <input |
| class="w-full py-1 text-sm bg-transparent dark:text-gray-300 outline-hidden" |
| bind:value={search} |
| id="search-input-settings-modal" |
| on:input={searchDebounceHandler} |
| placeholder={$i18n.t('Search')} |
| /> |
| </div> |
|
|
| <!-- {$i18n.t('General')} --> |
| <!-- {$i18n.t('Connections')} --> |
| <!-- {$i18n.t('Models')} --> |
| <!-- {$i18n.t('Evaluations')} --> |
| <!-- {$i18n.t('External Tools')} --> |
| <!-- {$i18n.t('Documents')} --> |
| <!-- {$i18n.t('Web Search')} --> |
| <!-- {$i18n.t('Code Execution')} --> |
| <!-- {$i18n.t('Interface')} --> |
| <!-- {$i18n.t('Audio')} --> |
| <!-- {$i18n.t('Images')} --> |
| <!-- {$i18n.t('Pipelines')} --> |
| <!-- {$i18n.t('Database')} --> |
| {#each filteredSettings as tab (tab.id)} |
| <button |
| id={tab.id} |
| class="px-0.5 py-1 min-w-fit rounded-lg flex-1 lg:flex-none flex text-right transition {selectedTab === |
| tab.id |
| ? '' |
| : ' text-gray-300 dark:text-gray-600 hover:text-gray-700 dark:hover:text-white'}" |
| on:click={() => { |
| goto(tab.route); |
| }} |
| > |
| <div class=" self-center mr-2"> |
| {#if tab.id === 'general'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| fill-rule="evenodd" |
| d="M6.955 1.45A.5.5 0 0 1 7.452 1h1.096a.5.5 0 0 1 .497.45l.17 1.699c.484.12.94.312 1.356.562l1.321-1.081a.5.5 0 0 1 .67.033l.774.775a.5.5 0 0 1 .034.67l-1.08 1.32c.25.417.44.873.561 1.357l1.699.17a.5.5 0 0 1 .45.497v1.096a.5.5 0 0 1-.45.497l-1.699.17c-.12.484-.312.94-.562 1.356l1.082 1.322a.5.5 0 0 1-.034.67l-.774.774a.5.5 0 0 1-.67.033l-1.322-1.08c-.416.25-.872.44-1.356.561l-.17 1.699a.5.5 0 0 1-.497.45H7.452a.5.5 0 0 1-.497-.45l-.17-1.699a4.973 4.973 0 0 1-1.356-.562L4.108 13.37a.5.5 0 0 1-.67-.033l-.774-.775a.5.5 0 0 1-.034-.67l1.08-1.32a4.971 4.971 0 0 1-.561-1.357l-1.699-.17A.5.5 0 0 1 1 8.548V7.452a.5.5 0 0 1 .45-.497l1.699-.17c.12-.484.312-.94.562-1.356L2.629 4.107a.5.5 0 0 1 .034-.67l.774-.774a.5.5 0 0 1 .67-.033L5.43 3.71a4.97 4.97 0 0 1 1.356-.561l.17-1.699ZM6 8c0 .538.212 1.026.558 1.385l.057.057a2 2 0 0 0 2.828-2.828l-.058-.056A2 2 0 0 0 6 8Z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'connections'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| d="M1 9.5A3.5 3.5 0 0 0 4.5 13H12a3 3 0 0 0 .917-5.857 2.503 2.503 0 0 0-3.198-3.019 3.5 3.5 0 0 0-6.628 2.171A3.5 3.5 0 0 0 1 9.5Z" |
| /> |
| </svg> |
| {:else if tab.id === 'models'} |
| <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="M10 1c3.866 0 7 1.79 7 4s-3.134 4-7 4-7-1.79-7-4 3.134-4 7-4zm5.694 8.13c.464-.264.91-.583 1.306-.952V10c0 2.21-3.134 4-7 4s-7-1.79-7-4V8.178c.396.37.842.688 1.306.953C5.838 10.006 7.854 10.5 10 10.5s4.162-.494 5.694-1.37zM3 13.179V15c0 2.21 3.134 4 7 4s7-1.79 7-4v-1.822c-.396.37-.842.688-1.306.953-1.532.875-3.548 1.369-5.694 1.369s-4.162-.494-5.694-1.37A7.009 7.009 0 013 13.179z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'evaluations'} |
| <DocumentChartBar /> |
| {:else if tab.id === 'tools'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 24 24" |
| fill="currentColor" |
| class="size-4" |
| > |
| <path |
| fill-rule="evenodd" |
| d="M12 6.75a5.25 5.25 0 0 1 6.775-5.025.75.75 0 0 1 .313 1.248l-3.32 3.319c.063.475.276.934.641 1.299.365.365.824.578 1.3.64l3.318-3.319a.75.75 0 0 1 1.248.313 5.25 5.25 0 0 1-5.472 6.756c-1.018-.086-1.87.1-2.309.634L7.344 21.3A3.298 3.298 0 1 1 2.7 16.657l8.684-7.151c.533-.44.72-1.291.634-2.309A5.342 5.342 0 0 1 12 6.75ZM4.117 19.125a.75.75 0 0 1 .75-.75h.008a.75.75 0 0 1 .75.75v.008a.75.75 0 0 1-.75.75h-.008a.75.75 0 0 1-.75-.75v-.008Z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'documents'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 24 24" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path d="M11.625 16.5a1.875 1.875 0 1 0 0-3.75 1.875 1.875 0 0 0 0 3.75Z" /> |
| <path |
| fill-rule="evenodd" |
| d="M5.625 1.5H9a3.75 3.75 0 0 1 3.75 3.75v1.875c0 1.036.84 1.875 1.875 1.875H16.5a3.75 3.75 0 0 1 3.75 3.75v7.875c0 1.035-.84 1.875-1.875 1.875H5.625a1.875 1.875 0 0 1-1.875-1.875V3.375c0-1.036.84-1.875 1.875-1.875Zm6 16.5c.66 0 1.277-.19 1.797-.518l1.048 1.048a.75.75 0 0 0 1.06-1.06l-1.047-1.048A3.375 3.375 0 1 0 11.625 18Z" |
| clip-rule="evenodd" |
| /> |
| <path |
| d="M14.25 5.25a5.23 5.23 0 0 0-1.279-3.434 9.768 9.768 0 0 1 6.963 6.963A5.23 5.23 0 0 0 16.5 7.5h-1.875a.375.375 0 0 1-.375-.375V5.25Z" |
| /> |
| </svg> |
| {:else if tab.id === 'web'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 24 24" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| d="M21.721 12.752a9.711 9.711 0 0 0-.945-5.003 12.754 12.754 0 0 1-4.339 2.708 18.991 18.991 0 0 1-.214 4.772 17.165 17.165 0 0 0 5.498-2.477ZM14.634 15.55a17.324 17.324 0 0 0 .332-4.647c-.952.227-1.945.347-2.966.347-1.021 0-2.014-.12-2.966-.347a17.515 17.515 0 0 0 .332 4.647 17.385 17.385 0 0 0 5.268 0ZM9.772 17.119a18.963 18.963 0 0 0 4.456 0A17.182 17.182 0 0 1 12 21.724a17.18 17.18 0 0 1-2.228-4.605ZM7.777 15.23a18.87 18.87 0 0 1-.214-4.774 12.753 12.753 0 0 1-4.34-2.708 9.711 9.711 0 0 0-.944 5.004 17.165 17.165 0 0 0 5.498 2.477ZM21.356 14.752a9.765 9.765 0 0 1-7.478 6.817 18.64 18.64 0 0 0 1.988-4.718 18.627 18.627 0 0 0 5.49-2.098ZM2.644 14.752c1.682.971 3.53 1.688 5.49 2.099a18.64 18.64 0 0 0 1.988 4.718 9.765 9.765 0 0 1-7.478-6.816ZM13.878 2.43a9.755 9.755 0 0 1 6.116 3.986 11.267 11.267 0 0 1-3.746 2.504 18.63 18.63 0 0 0-2.37-6.49ZM12 2.276a17.152 17.152 0 0 1 2.805 7.121c-.897.23-1.837.353-2.805.353-.968 0-1.908-.122-2.805-.353A17.151 17.151 0 0 1 12 2.276ZM10.122 2.43a18.629 18.629 0 0 0-2.37 6.49 11.266 11.266 0 0 1-3.746-2.504 9.754 9.754 0 0 1 6.116-3.985Z" |
| /> |
| </svg> |
| {:else if tab.id === 'code-execution'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="size-4" |
| > |
| <path |
| fill-rule="evenodd" |
| d="M2 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm2.22 1.97a.75.75 0 0 0 0 1.06l.97.97-.97.97a.75.75 0 1 0 1.06 1.06l1.5-1.5a.75.75 0 0 0 0-1.06l-1.5-1.5a.75.75 0 0 0-1.06 0ZM8.75 8.5a.75.75 0 0 0 0 1.5h2.5a.75.75 0 0 0 0-1.5h-2.5Z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'interface'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| fill-rule="evenodd" |
| d="M2 4.25A2.25 2.25 0 0 1 4.25 2h7.5A2.25 2.25 0 0 1 14 4.25v5.5A2.25 2.25 0 0 1 11.75 12h-1.312c.1.128.21.248.328.36a.75.75 0 0 1 .234.545v.345a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-.345a.75.75 0 0 1 .234-.545c.118-.111.228-.232.328-.36H4.25A2.25 2.25 0 0 1 2 9.75v-5.5Zm2.25-.75a.75.75 0 0 0-.75.75v4.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75v-4.5a.75.75 0 0 0-.75-.75h-7.5Z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'audio'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| d="M7.557 2.066A.75.75 0 0 1 8 2.75v10.5a.75.75 0 0 1-1.248.56L3.59 11H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1.59l3.162-2.81a.75.75 0 0 1 .805-.124ZM12.95 3.05a.75.75 0 1 0-1.06 1.06 5.5 5.5 0 0 1 0 7.78.75.75 0 1 0 1.06 1.06 7 7 0 0 0 0-9.9Z" |
| /> |
| <path |
| d="M10.828 5.172a.75.75 0 1 0-1.06 1.06 2.5 2.5 0 0 1 0 3.536.75.75 0 1 0 1.06 1.06 4 4 0 0 0 0-5.656Z" |
| /> |
| </svg> |
| {:else if tab.id === 'images'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path |
| fill-rule="evenodd" |
| d="M2 4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4Zm10.5 5.707a.5.5 0 0 0-.146-.353l-1-1a.5.5 0 0 0-.708 0L9.354 9.646a.5.5 0 0 1-.708 0L6.354 7.354a.5.5 0 0 0-.708 0l-2 2a.5.5 0 0 0-.146.353V12a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V9.707ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" |
| clip-rule="evenodd" |
| /> |
| </svg> |
| {:else if tab.id === 'pipelines'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 24 24" |
| fill="currentColor" |
| class="size-4" |
| > |
| <path |
| d="M11.644 1.59a.75.75 0 0 1 .712 0l9.75 5.25a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.712 0l-9.75-5.25a.75.75 0 0 1 0-1.32l9.75-5.25Z" |
| /> |
| <path |
| d="m3.265 10.602 7.668 4.129a2.25 2.25 0 0 0 2.134 0l7.668-4.13 1.37.739a.75.75 0 0 1 0 1.32l-9.75 5.25a.75.75 0 0 1-.71 0l-9.75-5.25a.75.75 0 0 1 0-1.32l1.37-.738Z" |
| /> |
| <path |
| d="m10.933 19.231-7.668-4.13-1.37.739a.75.75 0 0 0 0 1.32l9.75 5.25c.221.12.489.12.71 0l9.75-5.25a.75.75 0 0 0 0-1.32l-1.37-.738-7.668 4.13a2.25 2.25 0 0 1-2.134-.001Z" |
| /> |
| </svg> |
| {:else if tab.id === 'db'} |
| <svg |
| xmlns="http://www.w3.org/2000/svg" |
| viewBox="0 0 16 16" |
| fill="currentColor" |
| class="w-4 h-4" |
| > |
| <path d="M8 7c3.314 0 6-1.343 6-3s-2.686-3-6-3-6 1.343-6 3 2.686 3 6 3Z" /> |
| <path |
| d="M8 8.5c1.84 0 3.579-.37 4.914-1.037A6.33 6.33 0 0 0 14 6.78V8c0 1.657-2.686 3-6 3S2 9.657 2 8V6.78c.346.273.72.5 1.087.683C4.42 8.131 6.16 8.5 8 8.5Z" |
| /> |
| <path |
| d="M8 12.5c1.84 0 3.579-.37 4.914-1.037.366-.183.74-.41 1.086-.684V12c0 1.657-2.686 3-6 3s-6-1.343-6-3v-1.22c.346.273.72.5 1.087.683C4.42 12.131 6.16 12.5 8 12.5Z" |
| /> |
| </svg> |
| {/if} |
| </div> |
| <div class=" self-center">{$i18n.t(tab.title)}</div> |
| </button> |
| {/each} |
| </div> |
|
|
| <div |
| class="flex-1 mt-3 lg:mt-1 px-[16px] lg:pr-[16px] lg:pl-0 overflow-y-scroll scrollbar-hidden" |
| > |
| {#if selectedTab === 'general'} |
| <General |
| saveHandler={async () => { |
| toast.success($i18n.t('Settings saved successfully!')); |
|
|
| await tick(); |
| await config.set(await getBackendConfig()); |
| }} |
| /> |
| {:else if selectedTab === 'connections'} |
| <Connections |
| on:save={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {:else if selectedTab === 'models'} |
| <Models /> |
| {:else if selectedTab === 'evaluations'} |
| <Evaluations /> |
| {:else if selectedTab === 'tools'} |
| <Tools /> |
| {:else if selectedTab === 'documents'} |
| <Documents |
| on:save={async () => { |
| toast.success($i18n.t('Settings saved successfully!')); |
|
|
| await tick(); |
| await config.set(await getBackendConfig()); |
| }} |
| /> |
| {:else if selectedTab === 'web'} |
| <WebSearch |
| saveHandler={async () => { |
| toast.success($i18n.t('Settings saved successfully!')); |
|
|
| await tick(); |
| await config.set(await getBackendConfig()); |
| }} |
| /> |
| {:else if selectedTab === 'code-execution'} |
| <CodeExecution |
| saveHandler={async () => { |
| toast.success($i18n.t('Settings saved successfully!')); |
|
|
| await tick(); |
| await config.set(await getBackendConfig()); |
| }} |
| /> |
| {:else if selectedTab === 'interface'} |
| <Interface |
| on:save={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {:else if selectedTab === 'audio'} |
| <Audio |
| saveHandler={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {:else if selectedTab === 'images'} |
| <Images |
| on:save={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {:else if selectedTab === 'db'} |
| <Database |
| saveHandler={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {:else if selectedTab === 'pipelines'} |
| <Pipelines |
| saveHandler={() => { |
| toast.success($i18n.t('Settings saved successfully!')); |
| }} |
| /> |
| {/if} |
| </div> |
| </div> |
|
|