mirror of
https://github.com/open-webui/open-webui
synced 2025-04-05 05:10:46 +00:00
62 lines
2.0 KiB
Svelte
62 lines
2.0 KiB
Svelte
<script lang="ts">
|
|
import { getContext } from 'svelte';
|
|
import Checkbox from '$lib/components/common/Checkbox.svelte';
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
|
import { marked } from 'marked';
|
|
|
|
const i18n = getContext('i18n');
|
|
|
|
const helpText = {
|
|
vision: $i18n.t('Model accepts image inputs'),
|
|
usage: $i18n.t(
|
|
'Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.'
|
|
),
|
|
citations: $i18n.t('Displays citations in the response'),
|
|
websearch: $i18n.t('Enables web search capability for this model. (if active in Admin Settings)'),
|
|
codeexecution: $i18n.t('Enables codeInterpreter capability for this model. (if active in Admin Settings)'),
|
|
imagegeneration: $i18n.t('Enables image generation capability for this model. (if active in Admin Settings)'),
|
|
};
|
|
|
|
const displayNames = {
|
|
vision: $i18n.t('Vision'),
|
|
usage: $i18n.t('Usage'),
|
|
citations: $i18n.t('Citations'),
|
|
websearch: $i18n.t('Web Search'),
|
|
codeexecution: $i18n.t('Code Execution'),
|
|
imagegeneration: $i18n.t('Image Generation')
|
|
};
|
|
|
|
export let capabilities: {
|
|
vision?: boolean;
|
|
usage?: boolean;
|
|
citations?: boolean;
|
|
websearch?: boolean;
|
|
codeexecution?: boolean;
|
|
imagegeneration?: boolean;
|
|
} = {};
|
|
</script>
|
|
|
|
<div>
|
|
<div class="flex w-full justify-between mb-1">
|
|
<div class=" self-center text-sm font-semibold">{$i18n.t('Capabilities')}</div>
|
|
</div>
|
|
<div class="flex">
|
|
{#each Object.keys(capabilities) as capability}
|
|
<div class=" flex items-center gap-2 mr-3">
|
|
<Checkbox
|
|
state={capabilities[capability] ? 'checked' : 'unchecked'}
|
|
on:change={(e) => {
|
|
capabilities[capability] = e.detail === 'checked';
|
|
}}
|
|
/>
|
|
|
|
<div class=" py-0.5 text-sm capitalize">
|
|
<Tooltip content={marked.parse(helpText[capability])}>
|
|
{displayNames[capability]}
|
|
</Tooltip>
|
|
</div>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
</div>
|