2024-07-22 00:00:54 +08:00
|
|
|
|
<template>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<div class="">
|
|
|
|
|
|
<HeaderComponent title="设置" class="setting-header">
|
|
|
|
|
|
<template #description>
|
2025-02-26 23:58:26 +08:00
|
|
|
|
<p>配置文件也可以在 <code>saves/config/base.yaml</code> 中修改</p>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<template #actions>
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<a-button :type="isNeedRestart ? 'primary' : 'default'" @click="sendRestart" :icon="h(ReloadOutlined)">
|
|
|
|
|
|
{{ isNeedRestart ? '需要重启' : '重启服务' }}
|
2024-09-14 02:46:44 +08:00
|
|
|
|
</a-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</HeaderComponent>
|
|
|
|
|
|
<div class="setting-container layout-container">
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="sider" v-if="state.windowWidth > 520">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<a-button type="text" :class="{ activesec: state.section === 'base'}" @click="state.section='base'" :icon="h(SettingOutlined)"> 基本设置 </a-button>
|
|
|
|
|
|
<a-button type="text" :class="{ activesec: state.section === 'model'}" @click="state.section='model'" :icon="h(CodeOutlined)"> 模型配置 </a-button>
|
|
|
|
|
|
<a-button type="text" :class="{ activesec: state.section === 'path'}" @click="state.section='path'" :icon="h(FolderOutlined)"> 路径配置 </a-button>
|
|
|
|
|
|
</div>
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="setting" v-if="state.windowWidth <= 520 || state.section === 'base'">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<h3>基础模型配置</h3>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<div class="section">
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="card card-select">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<span class="label">{{ items?.embed_model.des }}</span>
|
2025-02-23 16:39:52 +08:00
|
|
|
|
<a-select style="width: 300px"
|
2024-09-14 02:46:44 +08:00
|
|
|
|
:value="configStore.config?.embed_model"
|
|
|
|
|
|
@change="handleChange('embed_model', $event)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<a-select-option
|
|
|
|
|
|
v-for="(name, idx) in items?.embed_model.choices" :key="idx"
|
|
|
|
|
|
:value="name">{{ name }}
|
|
|
|
|
|
</a-select-option>
|
|
|
|
|
|
</a-select>
|
|
|
|
|
|
</div>
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="card card-select">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<span class="label">{{ items?.reranker.des }}</span>
|
2025-02-23 16:39:52 +08:00
|
|
|
|
<a-select style="width: 300px"
|
2024-09-14 02:46:44 +08:00
|
|
|
|
:value="configStore.config?.reranker"
|
|
|
|
|
|
@change="handleChange('reranker', $event)"
|
|
|
|
|
|
:disabled="!configStore.config.enable_reranker"
|
|
|
|
|
|
>
|
|
|
|
|
|
<a-select-option
|
|
|
|
|
|
v-for="(name, idx) in items?.reranker.choices" :key="idx"
|
|
|
|
|
|
:value="name">{{ name }}
|
|
|
|
|
|
</a-select-option>
|
|
|
|
|
|
</a-select>
|
|
|
|
|
|
</div>
|
2024-07-25 20:30:28 +08:00
|
|
|
|
</div>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<h3>功能配置</h3>
|
|
|
|
|
|
<div class="section">
|
|
|
|
|
|
<div class="card">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<span class="label">{{ items?.enable_knowledge_base.des }}</span>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<a-switch
|
|
|
|
|
|
:checked="configStore.config.enable_knowledge_base"
|
|
|
|
|
|
@change="handleChange('enable_knowledge_base', !configStore.config.enable_knowledge_base)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="card">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<span class="label">{{ items?.enable_knowledge_graph.des }}</span>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<a-switch
|
|
|
|
|
|
:checked="configStore.config.enable_knowledge_graph"
|
|
|
|
|
|
@change="handleChange('enable_knowledge_graph', !configStore.config.enable_knowledge_graph)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2025-02-24 14:58:35 +08:00
|
|
|
|
<div class="card">
|
|
|
|
|
|
<span class="label">{{ items?.enable_web_search.des }}</span>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<a-switch
|
2025-02-24 14:58:35 +08:00
|
|
|
|
:checked="configStore.config.enable_web_search"
|
|
|
|
|
|
@change="handleChange('enable_web_search', !configStore.config.enable_web_search)"
|
2024-09-14 02:46:44 +08:00
|
|
|
|
/>
|
2025-02-24 14:58:35 +08:00
|
|
|
|
</div>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<div class="card">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<span class="label">{{ items?.enable_reranker.des }}</span>
|
2024-09-14 02:46:44 +08:00
|
|
|
|
<a-switch
|
|
|
|
|
|
:checked="configStore.config.enable_reranker"
|
|
|
|
|
|
@change="handleChange('enable_reranker', !configStore.config.enable_reranker)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2024-07-25 20:30:28 +08:00
|
|
|
|
</div>
|
2025-02-20 01:26:12 +08:00
|
|
|
|
<h3>检索配置</h3>
|
|
|
|
|
|
<div class="section">
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="card card-select">
|
2025-02-20 01:26:12 +08:00
|
|
|
|
<span class="label">{{ items?.use_rewrite_query.des }}</span>
|
|
|
|
|
|
<a-select style="width: 200px"
|
|
|
|
|
|
:value="configStore.config?.use_rewrite_query"
|
|
|
|
|
|
@change="handleChange('use_rewrite_query', $event)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<a-select-option
|
|
|
|
|
|
v-for="(name, idx) in items?.use_rewrite_query.choices" :key="idx"
|
|
|
|
|
|
:value="name">{{ name }}
|
|
|
|
|
|
</a-select-option>
|
|
|
|
|
|
</a-select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-07-25 20:30:28 +08:00
|
|
|
|
</div>
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="setting" v-if="state.windowWidth <= 520 || state.section === 'model'">
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<h3>模型配置</h3>
|
|
|
|
|
|
<p>请在 <code>src/.env</code> 文件中配置对应的 APIKEY</p>
|
2024-10-08 22:16:17 +08:00
|
|
|
|
<div class="model-provider-card">
|
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
|
<h3>自定义模型</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
<div
|
2024-10-24 17:32:24 +08:00
|
|
|
|
:class="{'model_selected': modelProvider == 'custom' && configStore.config.model_name == item.custom_id, 'card-models': true, 'custom-model': true}"
|
|
|
|
|
|
v-for="(item, key) in configStore.config.custom_models" :key="item.custom_id"
|
|
|
|
|
|
@click="handleChange('model_provider', 'custom'); handleChange('model_name', item.custom_id)"
|
2024-10-08 22:16:17 +08:00
|
|
|
|
>
|
|
|
|
|
|
<div class="card-models__header">
|
|
|
|
|
|
<div class="name">{{ item.name }}</div>
|
|
|
|
|
|
<div class="action">
|
|
|
|
|
|
<a-popconfirm
|
|
|
|
|
|
title="确认删除该模型?"
|
2024-10-24 17:32:24 +08:00
|
|
|
|
@confirm="handleDeleteCustomModel(item.custom_id)"
|
2024-10-08 22:16:17 +08:00
|
|
|
|
okText="确认删除"
|
|
|
|
|
|
cancelText="取消"
|
|
|
|
|
|
ok-type="danger"
|
|
|
|
|
|
:disabled="configStore.config.model_name == item.name"
|
|
|
|
|
|
>
|
|
|
|
|
|
<a-button type="text" :disabled="configStore.config.model_name == item.name" @click.stop><DeleteOutlined /></a-button>
|
|
|
|
|
|
</a-popconfirm>
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<a-button type="text" @click.stop="prepareToEditCustomModel(item)"><EditOutlined /></a-button>
|
2024-10-08 22:16:17 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="api_base">{{ item.api_base }}</div>
|
|
|
|
|
|
</div>
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<div class="card-models custom-model" @click="prepareToAddCustomModel">
|
2024-10-08 22:16:17 +08:00
|
|
|
|
<div class="card-models__header">
|
|
|
|
|
|
<div class="name"> + 添加模型</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="api_base">添加兼容 OpenAI 的模型</div>
|
|
|
|
|
|
<a-modal
|
|
|
|
|
|
class="custom-model-modal"
|
|
|
|
|
|
v-model:open="customModel.visible"
|
|
|
|
|
|
:title="customModel.modelTitle"
|
2025-03-14 03:29:08 +08:00
|
|
|
|
@ok="handleAddOrEditCustomModel"
|
2024-10-08 22:16:17 +08:00
|
|
|
|
@cancel="handleCancelCustomModel"
|
|
|
|
|
|
:okText="'确认'"
|
|
|
|
|
|
:cancelText="'取消'"
|
|
|
|
|
|
:okButtonProps="{disabled: !customModel.name || !customModel.api_base}"
|
|
|
|
|
|
:ok-type="'primary'"
|
|
|
|
|
|
>
|
|
|
|
|
|
<p>添加的模型是兼容 OpenAI 的模型,比如 vllm,Ollama。</p>
|
|
|
|
|
|
<a-form :model="customModel" layout="vertical" >
|
|
|
|
|
|
<a-form-item label="模型名称" name="name" :rules="[{ required: true, message: '请输入模型名称' }]">
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<a-input v-model:value="customModel.name" :disabled="customModel.edit_type == 'edit'"/>
|
2024-10-08 22:16:17 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
|
<a-form-item label="API Base" name="api_base" :rules="[{ required: true, message: '请输入API Base' }]">
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<a-input v-model:value="customModel.api_base" />
|
2024-10-08 22:16:17 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
|
<a-form-item label="API KEY" name="api_key">
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<a-input-password v-model:value="customModel.api_key" :visibilityToggle="false" autocomplete="new-password"/>
|
2024-10-08 22:16:17 +08:00
|
|
|
|
</a-form-item>
|
|
|
|
|
|
</a-form>
|
|
|
|
|
|
</a-modal>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="model-provider-card" v-for="(item, key) in modelKeys" :key="key">
|
2025-03-15 02:02:26 +08:00
|
|
|
|
<div class="card-header" @click="toggleExpand(item)">
|
2025-03-07 12:38:39 +08:00
|
|
|
|
<!-- <div v-if="modelStatus[item]" class="success"></div> -->
|
|
|
|
|
|
<div :class="{'model-icon': true, 'available': modelStatus[item]}">
|
|
|
|
|
|
<img :src="modelIcons[item]" alt="模型图标">
|
|
|
|
|
|
</div>
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<div class="model-title-container">
|
|
|
|
|
|
<h3>{{ modelNames[item].name }}</h3>
|
2025-03-15 02:02:26 +08:00
|
|
|
|
<a :href="modelNames[item].url" target="_blank" class="model-url" @click.stop>
|
2025-03-14 03:50:33 +08:00
|
|
|
|
<InfoCircleOutlined />
|
2025-03-14 03:29:08 +08:00
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<a-button
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
class="expand-button"
|
2025-03-15 02:02:26 +08:00
|
|
|
|
@click.stop="toggleExpand(item)"
|
2024-09-28 00:41:18 +08:00
|
|
|
|
>
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<span class="icon-wrapper" :class="{'rotated': expandedModels[item]}">
|
|
|
|
|
|
<DownOutlined />
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</a-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="card-body-wrapper" :class="{'expanded': expandedModels[item]}">
|
|
|
|
|
|
<div class="card-body" v-if="modelStatus[item]">
|
|
|
|
|
|
<div
|
|
|
|
|
|
:class="{'model_selected': modelProvider == item && configStore.config.model_name == model, 'card-models': true}"
|
|
|
|
|
|
v-for="(model, idx) in modelNames[item].models" :key="idx"
|
|
|
|
|
|
@click="handleChange('model_provider', item); handleChange('model_name', model)"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="model_name">{{ model }}</div>
|
|
|
|
|
|
</div>
|
2024-09-28 00:41:18 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="model-provider-card" v-for="(item, key) in notModelKeys" :key="key">
|
|
|
|
|
|
<div class="card-header">
|
2025-03-14 03:29:08 +08:00
|
|
|
|
<div class="model-icon">
|
|
|
|
|
|
<img :src="modelIcons[item]" alt="模型图标">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="model-title-container">
|
|
|
|
|
|
<h3 style="font-weight: 400">{{ modelNames[item].name }}</h3>
|
|
|
|
|
|
<a :href="modelNames[item].url" target="_blank" class="model-url">
|
2025-03-14 03:50:33 +08:00
|
|
|
|
<InfoCircleOutlined />
|
2025-03-14 03:29:08 +08:00
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
2024-09-28 00:41:18 +08:00
|
|
|
|
<div class="missing-keys">
|
2025-03-14 03:29:08 +08:00
|
|
|
|
需配置<span v-for="(key, idx) in modelNames[item].env" :key="idx">{{ key }}</span>
|
2024-09-28 00:41:18 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-02-27 01:37:42 +08:00
|
|
|
|
<div class="setting" v-if="state.windowWidth <= 520 || state.section ==='path'">
|
2025-02-20 01:26:12 +08:00
|
|
|
|
<h3>本地模型配置</h3>
|
2025-03-08 20:26:00 +08:00
|
|
|
|
<p>如果是 Docker 启动,务必确保在 docker-compose.dev.yaml 中添加了 volumes 映射。</p>
|
2025-02-20 01:26:12 +08:00
|
|
|
|
<TableConfigComponent
|
|
|
|
|
|
:config="configStore.config?.model_local_paths"
|
|
|
|
|
|
@update:config="handleModelLocalPathsUpdate"
|
|
|
|
|
|
/>
|
2024-11-14 20:07:49 +08:00
|
|
|
|
</div>
|
2024-07-25 20:30:28 +08:00
|
|
|
|
</div>
|
2024-07-22 00:00:54 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
|
import { message } from 'ant-design-vue';
|
2025-02-27 01:37:42 +08:00
|
|
|
|
import { computed, reactive, ref, h, watch, onMounted, onUnmounted } from 'vue'
|
2024-07-27 14:32:57 +08:00
|
|
|
|
import { useConfigStore } from '@/stores/config';
|
2024-09-28 00:41:18 +08:00
|
|
|
|
import {
|
|
|
|
|
|
ReloadOutlined,
|
|
|
|
|
|
SettingOutlined,
|
|
|
|
|
|
CodeOutlined,
|
|
|
|
|
|
ExceptionOutlined,
|
|
|
|
|
|
FolderOutlined,
|
2024-10-08 22:16:17 +08:00
|
|
|
|
DeleteOutlined,
|
|
|
|
|
|
EditOutlined,
|
2024-10-24 20:08:23 +08:00
|
|
|
|
InfoCircleOutlined,
|
2025-03-14 03:29:08 +08:00
|
|
|
|
DownOutlined,
|
|
|
|
|
|
UpOutlined,
|
2024-09-28 00:41:18 +08:00
|
|
|
|
} from '@ant-design/icons-vue';
|
2024-09-14 02:46:44 +08:00
|
|
|
|
import HeaderComponent from '@/components/HeaderComponent.vue';
|
2025-02-20 01:26:12 +08:00
|
|
|
|
import TableConfigComponent from '@/components/TableConfigComponent.vue';
|
2024-10-08 22:16:17 +08:00
|
|
|
|
import { notification, Button } from 'ant-design-vue';
|
2025-03-07 12:38:39 +08:00
|
|
|
|
import { modelIcons } from '@/utils/modelIcon'
|
|
|
|
|
|
|
2024-07-22 00:00:54 +08:00
|
|
|
|
|
|
|
|
|
|
const configStore = useConfigStore()
|
2024-07-25 20:30:28 +08:00
|
|
|
|
const items = computed(() => configStore.config._config_items)
|
2024-09-28 00:41:18 +08:00
|
|
|
|
const modelNames = computed(() => configStore.config?.model_names)
|
|
|
|
|
|
const modelStatus = computed(() => configStore.config?.model_provider_status)
|
|
|
|
|
|
const modelProvider = computed(() => configStore.config?.model_provider)
|
|
|
|
|
|
const isNeedRestart = ref(false)
|
2024-10-08 22:16:17 +08:00
|
|
|
|
const customModel = reactive({
|
|
|
|
|
|
modelTitle: '添加自定义模型',
|
|
|
|
|
|
visible: false,
|
2025-03-14 03:29:08 +08:00
|
|
|
|
custom_id: '',
|
2024-10-08 22:16:17 +08:00
|
|
|
|
name: '',
|
|
|
|
|
|
api_key: '',
|
|
|
|
|
|
api_base: '',
|
|
|
|
|
|
edit_type: 'add',
|
|
|
|
|
|
})
|
2024-07-22 00:00:54 +08:00
|
|
|
|
const state = reactive({
|
|
|
|
|
|
loading: false,
|
2025-02-27 01:37:42 +08:00
|
|
|
|
section: 'base',
|
|
|
|
|
|
windowWidth: window?.innerWidth || 0
|
2024-09-28 00:41:18 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// 筛选 modelStatus 中为真的key
|
|
|
|
|
|
const modelKeys = computed(() => {
|
2025-02-27 01:37:42 +08:00
|
|
|
|
return Object.keys(modelStatus.value || {}).filter(key => modelStatus.value?.[key])
|
2024-09-28 00:41:18 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const notModelKeys = computed(() => {
|
2025-02-27 01:37:42 +08:00
|
|
|
|
return Object.keys(modelStatus.value || {}).filter(key => !modelStatus.value?.[key])
|
2024-07-22 00:00:54 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
2025-03-15 02:02:26 +08:00
|
|
|
|
// 模型展开状态管理
|
|
|
|
|
|
const expandedModels = reactive({})
|
|
|
|
|
|
|
|
|
|
|
|
// 监听 modelKeys 变化,确保新添加的模型也是默认展开状态
|
|
|
|
|
|
watch(modelKeys, (newKeys) => {
|
|
|
|
|
|
newKeys.forEach(key => {
|
|
|
|
|
|
if (expandedModels[key] === undefined) {
|
|
|
|
|
|
expandedModels[key] = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}, { immediate: true })
|
|
|
|
|
|
|
|
|
|
|
|
// 切换展开状态的方法
|
|
|
|
|
|
const toggleExpand = (item) => {
|
|
|
|
|
|
expandedModels[item] = !expandedModels[item]
|
|
|
|
|
|
}
|
2025-03-14 03:29:08 +08:00
|
|
|
|
|
2024-10-24 17:32:24 +08:00
|
|
|
|
const generateRandomHash = (length) => {
|
|
|
|
|
|
let chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
|
|
|
|
|
let hash = '';
|
|
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
|
|
hash += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
|
|
|
|
}
|
|
|
|
|
|
return hash;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-20 01:26:12 +08:00
|
|
|
|
const handleModelLocalPathsUpdate = (config) => {
|
|
|
|
|
|
handleChange('model_local_paths', config)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-07-25 20:30:28 +08:00
|
|
|
|
const handleChange = (key, e) => {
|
2024-09-03 16:37:59 +08:00
|
|
|
|
if (key == 'enable_knowledge_graph' && e && !configStore.config.enable_knowledge_base) {
|
2024-09-06 12:54:17 +08:00
|
|
|
|
message.error('启动知识图谱必须请先启用知识库功能')
|
2024-09-03 16:37:59 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2024-09-06 12:54:17 +08:00
|
|
|
|
|
|
|
|
|
|
if (key == 'enable_knowledge_base' && !e && configStore.config.enable_knowledge_graph) {
|
|
|
|
|
|
message.error('关闭知识库功能必须请先关闭知识图谱功能')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-10-24 13:09:59 +08:00
|
|
|
|
// 这些都是需要重启的配置
|
2024-09-28 00:41:18 +08:00
|
|
|
|
if (key == 'enable_reranker'
|
|
|
|
|
|
|| key == 'enable_knowledge_graph'
|
|
|
|
|
|
|| key == 'enable_knowledge_base'
|
2025-02-25 14:46:04 +08:00
|
|
|
|
|| key == 'enable_web_search'
|
2024-09-28 00:41:18 +08:00
|
|
|
|
|| key == 'embed_model'
|
2025-02-20 01:26:12 +08:00
|
|
|
|
|| key == 'reranker'
|
|
|
|
|
|
|| key == 'model_local_paths') {
|
2024-09-28 00:41:18 +08:00
|
|
|
|
if (!isNeedRestart.value) {
|
|
|
|
|
|
isNeedRestart.value = true
|
2024-10-08 22:16:17 +08:00
|
|
|
|
notification.info({
|
|
|
|
|
|
message: '需要重启服务',
|
|
|
|
|
|
description: '请点击右下角按钮重启服务',
|
|
|
|
|
|
placement: 'topLeft',
|
|
|
|
|
|
duration: 0,
|
|
|
|
|
|
btn: h(Button, { type: 'primary', onClick: sendRestart }, '立即重启')
|
|
|
|
|
|
})
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-07-25 20:30:28 +08:00
|
|
|
|
configStore.setConfigValue(key, e)
|
|
|
|
|
|
}
|
2024-10-08 22:16:17 +08:00
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
const handleAddOrEditCustomModel = async () => {
|
2024-10-08 22:16:17 +08:00
|
|
|
|
if (!customModel.name || !customModel.api_base) {
|
2025-03-14 03:29:08 +08:00
|
|
|
|
message.error('请填写完整的模型名称和API Base信息。')
|
2024-10-08 22:16:17 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
let custom_models = configStore.config.custom_models || [];
|
2024-10-24 17:32:24 +08:00
|
|
|
|
|
|
|
|
|
|
const model_info = {
|
2025-03-14 03:29:08 +08:00
|
|
|
|
custom_id: customModel.custom_id || `${customModel.name}-${generateRandomHash(4)}`,
|
2024-10-24 17:32:24 +08:00
|
|
|
|
name: customModel.name,
|
|
|
|
|
|
api_key: customModel.api_key,
|
|
|
|
|
|
api_base: customModel.api_base,
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
if (customModel.edit_type === 'add') {
|
|
|
|
|
|
if (custom_models.find(item => item.custom_id === customModel.custom_id)) {
|
|
|
|
|
|
message.error('模型ID已存在')
|
2024-10-24 17:32:24 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-03-14 03:29:08 +08:00
|
|
|
|
custom_models.push(model_info)
|
2024-10-08 22:16:17 +08:00
|
|
|
|
} else {
|
2025-03-14 03:29:08 +08:00
|
|
|
|
// 如果 custom_id 相同,则更新
|
|
|
|
|
|
custom_models = custom_models.map(item => item.custom_id === customModel.custom_id ? model_info : item);
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
customModel.visible = false;
|
|
|
|
|
|
await configStore.setConfigValue('custom_models', custom_models);
|
|
|
|
|
|
message.success(customModel.edit_type === 'add' ? '模型添加成功' : '模型修改成功');
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-10-24 17:32:24 +08:00
|
|
|
|
const handleDeleteCustomModel = (custom_id) => {
|
|
|
|
|
|
const updatedModels = configStore.config.custom_models.filter(item => item.custom_id !== custom_id);
|
2024-10-24 13:09:59 +08:00
|
|
|
|
configStore.setConfigValue('custom_models', updatedModels);
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
const prepareToEditCustomModel = (item) => {
|
2024-10-08 22:16:17 +08:00
|
|
|
|
customModel.modelTitle = '编辑自定义模型'
|
2024-10-24 17:32:24 +08:00
|
|
|
|
customModel.custom_id = item.custom_id
|
2025-03-14 03:29:08 +08:00
|
|
|
|
customModel.visible = true
|
|
|
|
|
|
customModel.edit_type = 'edit'
|
2024-10-08 22:16:17 +08:00
|
|
|
|
customModel.name = item.name
|
|
|
|
|
|
customModel.api_key = item.api_key
|
|
|
|
|
|
customModel.api_base = item.api_base
|
2025-03-14 03:29:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const prepareToAddCustomModel = () => {
|
|
|
|
|
|
customModel.modelTitle = '添加自定义模型'
|
|
|
|
|
|
customModel.edit_type = 'add'
|
2024-10-08 22:16:17 +08:00
|
|
|
|
customModel.visible = true
|
2025-03-14 03:29:08 +08:00
|
|
|
|
clearCustomModel()
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
const clearCustomModel = () => {
|
2024-10-24 17:32:24 +08:00
|
|
|
|
customModel.custom_id = ''
|
2024-10-08 22:16:17 +08:00
|
|
|
|
customModel.name = ''
|
|
|
|
|
|
customModel.api_key = ''
|
|
|
|
|
|
customModel.api_base = ''
|
2025-03-14 03:29:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleCancelCustomModel = () => {
|
|
|
|
|
|
clearCustomModel()
|
2024-10-08 22:16:17 +08:00
|
|
|
|
customModel.visible = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-02-27 01:37:42 +08:00
|
|
|
|
const updateWindowWidth = () => {
|
|
|
|
|
|
state.windowWidth = window?.innerWidth || 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
updateWindowWidth()
|
|
|
|
|
|
window.addEventListener('resize', updateWindowWidth)
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
|
window.removeEventListener('resize', updateWindowWidth)
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2024-07-22 00:00:54 +08:00
|
|
|
|
const sendRestart = () => {
|
|
|
|
|
|
console.log('Restarting...')
|
2024-07-27 14:32:57 +08:00
|
|
|
|
message.loading({ content: '重新加载模型中', key: "restart", duration: 0 });
|
2024-07-22 00:00:54 +08:00
|
|
|
|
fetch('/api/restart', {
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
console.log('Restarted')
|
2024-07-27 14:32:57 +08:00
|
|
|
|
message.success({ content: '重新加载完成!', key: "restart", duration: 2 });
|
2024-07-22 00:00:54 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
window.location.reload()
|
2024-07-31 20:22:05 +08:00
|
|
|
|
}, 200)
|
2024-07-22 00:00:54 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2024-07-25 20:30:28 +08:00
|
|
|
|
<style lang="less" scoped>
|
2024-09-28 00:41:18 +08:00
|
|
|
|
.setting-header {
|
|
|
|
|
|
height: 100px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-09-14 02:46:44 +08:00
|
|
|
|
.setting-header p {
|
|
|
|
|
|
margin: 8px 0 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.setting-container {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
display: flex;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
position: relative;
|
2024-10-08 22:16:17 +08:00
|
|
|
|
min-height: 100%;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sider {
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 100px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
border-right: 1px solid var(--main-light-3);
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
padding: 6px 16px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.1s;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
background: var(--gray-100);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.activesec {
|
|
|
|
|
|
background: var(--gray-200);
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-09-14 02:46:44 +08:00
|
|
|
|
}
|
2024-07-22 00:00:54 +08:00
|
|
|
|
|
2024-07-25 20:30:28 +08:00
|
|
|
|
.setting {
|
2024-09-14 02:46:44 +08:00
|
|
|
|
width: 100%;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
flex: 1;
|
2024-07-25 20:30:28 +08:00
|
|
|
|
margin: 0 auto;
|
2024-09-14 02:46:44 +08:00
|
|
|
|
height: 100%;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
margin-bottom: 40px;
|
2024-07-25 20:30:28 +08:00
|
|
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section {
|
|
|
|
|
|
margin-top: 20px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
background-color: var(--gray-10);
|
2024-07-25 20:30:28 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
// box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
2024-09-28 00:41:18 +08:00
|
|
|
|
border: 1px solid var(--gray-300);
|
2024-07-25 20:30:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
|
margin-right: 20px;
|
2024-09-06 21:30:49 +08:00
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
|
}
|
2024-07-25 20:30:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-07-22 00:00:54 +08:00
|
|
|
|
|
2024-09-28 00:41:18 +08:00
|
|
|
|
.model-provider-card {
|
|
|
|
|
|
border: 1px solid var(--gray-300);
|
2024-10-08 22:16:17 +08:00
|
|
|
|
background-color: white;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
border-radius: 8px;
|
2025-03-07 12:38:39 +08:00
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
padding: 12px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
.card-header {
|
|
|
|
|
|
display: flex;
|
2025-03-07 12:38:39 +08:00
|
|
|
|
align-items: center;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
gap: 10px;
|
2025-03-15 02:02:26 +08:00
|
|
|
|
cursor: pointer;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
.model-title-container {
|
|
|
|
|
|
display: flex;
|
2025-03-14 03:50:33 +08:00
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 10px;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.model-url {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
|
}
|
2024-09-28 00:41:18 +08:00
|
|
|
|
|
2025-03-07 12:38:39 +08:00
|
|
|
|
.model-icon {
|
2025-03-14 03:50:33 +08:00
|
|
|
|
width: 28px;
|
|
|
|
|
|
height: 28px;
|
|
|
|
|
|
|
2025-03-07 12:38:39 +08:00
|
|
|
|
// 灰度
|
|
|
|
|
|
filter: grayscale(100%);
|
|
|
|
|
|
img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
border: 1px solid var(--gray-300);
|
2025-03-07 12:38:39 +08:00
|
|
|
|
}
|
2025-03-08 20:26:00 +08:00
|
|
|
|
|
2025-03-07 12:38:39 +08:00
|
|
|
|
&.available {
|
|
|
|
|
|
filter: grayscale(0%);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-09-28 00:41:18 +08:00
|
|
|
|
h3 {
|
|
|
|
|
|
margin: 0;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
font-size: 0.9rem;
|
2024-10-24 20:08:23 +08:00
|
|
|
|
font-weight: bold;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
|
text-decoration: none;
|
2024-10-24 20:08:23 +08:00
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
|
font-size: 12px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
transition: all 0.1s;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-10-24 20:08:23 +08:00
|
|
|
|
.details, .missing-keys {
|
2024-09-28 00:41:18 +08:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.success {
|
2024-10-24 20:08:23 +08:00
|
|
|
|
width: 0.75rem;
|
|
|
|
|
|
height: 0.75rem;
|
2024-10-08 22:16:17 +08:00
|
|
|
|
background-color: rgb(91, 186, 91);
|
2024-09-28 00:41:18 +08:00
|
|
|
|
border-radius: 50%;
|
2024-10-24 20:08:23 +08:00
|
|
|
|
box-shadow: 0 0 10px 1px rgba( 0,128, 0, 0.1);
|
2024-09-28 00:41:18 +08:00
|
|
|
|
border: 2px solid white;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.missing-keys {
|
2025-03-14 03:29:08 +08:00
|
|
|
|
margin-top: 4px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
color: var(--gray-600);
|
2025-03-14 03:29:08 +08:00
|
|
|
|
font-size: 12px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
& > span {
|
2025-03-14 03:29:08 +08:00
|
|
|
|
margin-left: 6px;
|
2024-10-24 20:08:23 +08:00
|
|
|
|
user-select: all;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
background-color: var(--gray-100);
|
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
color: var(--gray-800);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.expand-button {
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
background-color: var(--gray-100);
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
2025-03-14 03:29:08 +08:00
|
|
|
|
|
|
|
|
|
|
.icon-wrapper {
|
|
|
|
|
|
display: inline-flex;
|
2025-03-14 03:50:33 +08:00
|
|
|
|
transition: transform 0.2s ease;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
|
|
|
|
|
|
&.rotated {
|
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
|
}
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-14 03:29:08 +08:00
|
|
|
|
.card-body-wrapper {
|
|
|
|
|
|
max-height: 0;
|
|
|
|
|
|
overflow: hidden;
|
2025-03-14 03:50:33 +08:00
|
|
|
|
transition: max-height 0.2s ease-out; // 先快后慢
|
2025-03-14 03:29:08 +08:00
|
|
|
|
|
|
|
|
|
|
&.expanded {
|
2025-03-14 03:50:33 +08:00
|
|
|
|
max-height: 700px; /* 设置一个足够大的值 */
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card-body {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
2025-03-07 12:38:39 +08:00
|
|
|
|
gap: 12px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
.card-models {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
border: 1px solid var(--gray-300);
|
2025-03-07 12:38:39 +08:00
|
|
|
|
padding: 12px 16px;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
box-sizing: border-box;
|
2025-03-07 12:38:39 +08:00
|
|
|
|
background-color: var(--gray-50);
|
2024-10-08 22:16:17 +08:00
|
|
|
|
transition: box-shadow 0.1s;
|
2024-09-28 00:41:18 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
.model_name {
|
|
|
|
|
|
font-size: 14px;
|
2025-03-07 12:38:39 +08:00
|
|
|
|
color: var(--gray-900);
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
.select-btn {
|
|
|
|
|
|
width: 16px;
|
|
|
|
|
|
height: 16px;
|
|
|
|
|
|
flex: 0 0 16px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.model_selected {
|
|
|
|
|
|
border: 2px solid var(--main-color);
|
|
|
|
|
|
padding: 9px 15px;
|
|
|
|
|
|
.model_name {
|
|
|
|
|
|
color: var(--gray-1000)
|
|
|
|
|
|
}
|
|
|
|
|
|
.select-btn {
|
|
|
|
|
|
border-color: var(--main-color);
|
|
|
|
|
|
border: 2px solid var(--main-color);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-10-08 22:16:17 +08:00
|
|
|
|
|
|
|
|
|
|
&.custom-model {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
.card-models__header {
|
|
|
|
|
|
width: 100%;
|
2025-03-14 03:29:08 +08:00
|
|
|
|
height: 24px;
|
2024-10-08 22:16:17 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
.name {
|
|
|
|
|
|
color: var(--gray-1000);
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
.action {
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
button {
|
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.custom-model-modal {
|
|
|
|
|
|
.ant-form-item {
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.api_base {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
color: var(--gray-600);
|
2025-03-14 03:29:08 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
width: 100%;
|
2024-10-08 22:16:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
.card-models__header {
|
|
|
|
|
|
.action {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
&.model_selected.custom-model {
|
|
|
|
|
|
padding: 9px 7px 9px 15px;
|
|
|
|
|
|
.card-models__header {
|
|
|
|
|
|
.action {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
2024-10-08 22:16:17 +08:00
|
|
|
|
|
2024-09-28 00:41:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-02-27 01:37:42 +08:00
|
|
|
|
}
|
2024-09-28 00:41:18 +08:00
|
|
|
|
|
2025-02-27 01:37:42 +08:00
|
|
|
|
@media (max-width: 520px) {
|
|
|
|
|
|
.setting-container {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card.card-select {
|
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
2024-07-22 00:00:54 +08:00
|
|
|
|
}
|
2024-10-24 13:09:59 +08:00
|
|
|
|
</style>
|
2024-10-24 17:32:24 +08:00
|
|
|
|
|