ForcePilot/web/src/views/AgentView.vue

1362 lines
35 KiB
Vue
Raw Normal View History

2025-03-25 05:40:07 +08:00
<template>
2025-03-31 23:02:05 +08:00
<div class="agent-view">
<div class="agent-view-header">
<div class="header-left">
<div class="header-item">
<div
class="agent-selector"
@click="openAgentModal"
style="width: 220px; cursor: pointer;"
2025-04-05 02:23:32 +08:00
>
<div class="selected-agent-display">
<span class="agent-name">{{ selectedAgent.name || '选择智能体' }}</span>
</div>
</div>
</div>
</div>
<div class="header-center">
</div>
<div class="header-right">
<div class="header-item">
<a-button class="header-button" @click="toggleConf" :icon="h(SettingOutlined)"> 配置 </a-button>
</div>
<div class="header-item">
2025-05-04 21:04:01 +08:00
<a-button
class="header-button"
2025-05-04 21:04:01 +08:00
@click="goToAgentPage"
v-if="selectedAgentId"
>
<template #icon><LinkOutlined /></template>
打开独立页面
</a-button>
<a-tooltip :title="isDefaultAgent ? '当前为默认智能体' : '设为默认智能体'" placement="left">
<a-button
class="header-button primary-action"
@click="setAsDefaultAgent"
v-if="selectedAgentId && userStore.isAdmin"
:disabled="isDefaultAgent"
2025-05-02 23:56:59 +08:00
>
<template #icon><StarOutlined /></template>
</a-button>
</a-tooltip>
2025-04-05 02:23:32 +08:00
2025-04-02 13:00:25 +08:00
</div>
2025-03-31 23:02:05 +08:00
</div>
</div>
<div class="agent-view-body">
2025-06-29 15:43:40 +08:00
<!-- 配置弹窗 -->
<a-modal
v-model:open="state.agentConfOpen"
title="智能体详细配置"
:width="800"
2025-06-29 15:43:40 +08:00
:footer="null"
:maskClosable="false"
class="conf-modal"
>
<div class="conf-content">
<div class="agent-info">
<p>详细配置信<span @click="toggleDebugMode"></span></p>
2025-06-29 15:43:40 +08:00
<p>{{ selectedAgent.description }}</p>
<pre v-if="state.debug_mode">{{ selectedAgent }}</pre>
<a-divider />
<div v-if="selectedAgentId && configSchema" class="config-modal-content">
<!-- 配置表单 -->
<a-form :model="agentConfig" layout="vertical">
<a-alert v-if="state.isEmptyConfig" type="warning" message="该智能体没有配置项" show-icon/>
<a-alert v-if="!selectedAgent.has_checkpointer" type="error" message="该智能体没有配置 Checkpointer功能无法正常使用参考https://langchain-ai.github.io/langgraph/concepts/persistence/" show-icon/>
<!-- 统一显示所有配置项 -->
<template v-for="(value, key) in configurableItems" :key="key">
<a-form-item
:label="getConfigLabel(key, value)"
:name="key"
class="config-item"
>
2025-06-29 15:43:40 +08:00
<p v-if="value.description" class="description">{{ value.description }}</p>
<!-- key匹配 -->
<div v-if="key === 'model'" class="agent-model">
<!-- <p><small>注意部分模型对于 Tool Calling 的支持不稳定建议采用{{ value.options }} </small></p> -->
<ModelSelectorComponent
@select-model="handleModelChange"
:model_name="agentConfig[key] ? agentConfig[key].split('/').slice(1).join('/') : ''"
:model_provider="agentConfig[key] ? agentConfig[key].split('/')[0] : ''"
/>
</div>
2025-06-29 15:43:40 +08:00
<a-textarea
v-else-if="key === 'system_prompt'"
v-model:value="agentConfig[key]"
:rows="2"
2025-06-29 15:43:40 +08:00
:placeholder="getPlaceholder(key, value)"
/>
<!-- 工具选择特殊处理 -->
<div v-else-if="key === 'tools'" class="tools-selector">
<div class="tools-summary">
<div class="tools-summary-left">
<span class="tools-count">已选择 {{ getSelectedCount(key) }} 个工具</span>
<a-button type="link" size="small" @click="clearSelection(key)" v-if="getSelectedCount(key) > 0">
清空
</a-button>
</div>
<a-button type="primary" @click="openToolsModal" class="select-tools-btn">
选择工具
</a-button>
</div>
<div v-if="getSelectedCount(key) > 0" class="selected-tools-preview">
<a-tag v-for="toolId in agentConfig[key]" :key="toolId" closable @close="removeSelectedTool(toolId)">
{{ getToolNameById(toolId) }}
</a-tag>
</div>
</div>
<!-- 数据类型匹配 -->
<!-- 布尔类型 -->
<a-switch
v-else-if="typeof agentConfig[key] === 'boolean'"
v-model:checked="agentConfig[key]"
/>
<!-- 单选 -->
<a-select
v-else-if="value?.options && (value?.type === 'str' || value?.type === 'select')"
v-model:value="agentConfig[key]"
>
<a-select-option v-for="option in value.options" :key="option" :value="option">
{{ option.label || option }}
</a-select-option>
</a-select>
<!-- 多选 -->
2025-06-29 15:43:40 +08:00
<div v-else-if="value?.options && value?.type === 'list'" class="multi-select-cards">
<div class="multi-select-label">
<span>已选择 {{ getSelectedCount(key) }} </span>
<a-button type="link" size="small" @click="clearSelection(key)" v-if="getSelectedCount(key) > 0" >
清空
</a-button>
</div>
<div class="options-grid">
<div
v-for="option in value.options"
:key="option"
class="option-card"
:class="{
'selected': isOptionSelected(key, option),
'unselected': !isOptionSelected(key, option)
}"
@click="toggleOption(key, option)"
>
<div class="option-content">
<span class="option-text">{{ getToolNameById(toolId) }}</span>
2025-06-29 15:43:40 +08:00
<div class="option-indicator">
<CheckCircleOutlined v-if="isOptionSelected(key, option)" />
<PlusCircleOutlined v-else />
</div>
</div>
</div>
</div>
</div>
<!-- 数字 -->
<a-input-number
v-else-if="value?.type === 'number'"
v-model:value="agentConfig[key]"
:placeholder="getPlaceholder(key, value)"
/>
<!-- 滑块 -->
<a-slider
v-else-if="value?.type === 'slider'"
v-model:value="agentConfig[key]"
:min="value.min"
:max="value.max"
:step="value.step"
style="max-width: 300px;"
/>
<!-- 其他类型 -->
2025-06-29 15:43:40 +08:00
<a-input
v-else
v-model:value="agentConfig[key]"
:placeholder="getPlaceholder(key, value)"
/>
</a-form-item>
</template>
<a-divider />
<!-- 弹窗底部按钮 -->
<div class="form-actions" v-if="!state.isEmptyConfig">
<div class="form-actions-left">
<a-button type="primary" @click="saveConfig">保存并发布配置</a-button>
<a-button @click="resetConfig">重置</a-button>
</div>
</div>
2025-06-29 15:43:40 +08:00
</a-form>
</div>
2025-04-05 02:23:32 +08:00
2025-06-29 15:43:40 +08:00
</div>
</div>
2025-06-29 15:43:40 +08:00
</a-modal>
2025-04-03 20:45:58 +08:00
<!-- 工具选择弹窗 -->
<a-modal
v-model:open="state.toolsModalOpen"
title="选择工具"
:width="800"
:footer="null"
:maskClosable="false"
class="tools-modal"
>
<div class="tools-modal-content">
<div class="tools-search">
<a-input
v-model:value="toolsSearchText"
placeholder="搜索工具..."
allow-clear
/>
</div>
<div class="tools-list">
<div
v-for="tool in filteredTools"
:key="tool.id"
class="tool-item"
:class="{ 'selected': selectedTools.includes(tool.id) }"
@click="toggleToolSelection(tool.id)"
>
<div class="tool-content">
<div class="tool-header">
<span class="tool-name">{{ tool.name }}</span>
<div class="tool-indicator">
<CheckCircleOutlined v-if="selectedTools.includes(tool.id)" />
<PlusCircleOutlined v-else />
</div>
</div>
<div class="tool-description">{{ tool.description }}</div>
</div>
</div>
</div>
<div class="tools-modal-footer">
<div class="selected-count">
已选择 {{ selectedTools.length }} 个工具
</div>
<div class="modal-actions">
<a-button @click="cancelToolsSelection">取消</a-button>
<a-button type="primary" @click="confirmToolsSelection">确认</a-button>
</div>
</div>
</div>
</a-modal>
<!-- 智能体选择弹窗 -->
<a-modal
v-model:open="state.agentModalOpen"
title="选择智能体"
:width="800"
:footer="null"
:maskClosable="true"
class="agent-modal"
>
<div class="agent-modal-content">
<div class="agents-grid">
<div
v-for="(agent, id) in agents"
:key="id"
class="agent-card"
:class="{ 'selected': id === selectedAgentId }"
@click="selectAgentFromModal(id)"
>
<div class="agent-card-header">
<div class="agent-card-title">
<span class="agent-card-name">{{ agent.name }}</span>
<StarFilled v-if="id === defaultAgentId" class="default-icon" />
</div>
<div class="agent-card-indicator">
<CheckCircleOutlined v-if="id === selectedAgentId" />
</div>
</div>
<div class="agent-card-description">{{ agent.description }}</div>
</div>
</div>
</div>
</a-modal>
<!-- 中间内容区域 -->
<div class="content">
<AgentChatComponent
:agent-id="selectedAgentId"
:config="agentConfig"
:state="state"
2025-06-29 15:43:40 +08:00
@open-config="toggleConf"
>
</AgentChatComponent>
</div>
</div>
2025-03-25 05:40:07 +08:00
</div>
</template>
2025-03-31 23:02:05 +08:00
<script setup>
2025-04-02 00:00:04 +08:00
import { ref, onMounted, reactive, watch, computed, h } from 'vue';
2025-04-05 02:23:32 +08:00
import { useRouter } from 'vue-router';
2025-04-02 00:00:04 +08:00
import {
CloseOutlined,
2025-04-05 02:23:32 +08:00
SettingOutlined,
2025-05-02 23:56:59 +08:00
LinkOutlined,
StarOutlined,
StarFilled,
CheckCircleOutlined,
PlusCircleOutlined
2025-04-02 00:00:04 +08:00
} from '@ant-design/icons-vue';
import { message } from 'ant-design-vue';
2025-03-31 23:02:05 +08:00
import AgentChatComponent from '@/components/AgentChatComponent.vue';
import ModelSelectorComponent from '@/components/ModelSelectorComponent.vue';
2025-05-02 23:56:59 +08:00
import { useUserStore } from '@/stores/user';
import { chatApi } from '@/apis/auth_api';
2025-07-22 17:29:38 +08:00
import { agentConfigApi } from '@/apis/system_api';
import { toolsApi } from '@/apis/tools';
2025-03-31 23:02:05 +08:00
2025-04-05 02:23:32 +08:00
// 路由
const router = useRouter();
2025-05-02 23:56:59 +08:00
const userStore = useUserStore();
2025-04-05 02:23:32 +08:00
2025-03-31 23:02:05 +08:00
// 状态
const agents = ref({});
const selectedAgentId = ref(null);
2025-05-02 23:56:59 +08:00
const defaultAgentId = ref(null); // 存储默认智能体ID
2025-04-01 22:16:07 +08:00
const state = reactive({
2025-06-29 15:43:40 +08:00
agentConfOpen: false,
2025-04-02 13:00:25 +08:00
debug_mode: false,
toolsModalOpen: false,
agentModalOpen: false,
2025-04-02 13:00:25 +08:00
isEmptyConfig: computed(() =>
!selectedAgentId.value ||
Object.keys(configurableItems.value).length === 0
)
2025-04-01 22:16:07 +08:00
});
// 工具相关状态
const availableTools = ref([]);
const selectedTools = ref([]);
const toolsSearchText = ref('');
// 过滤后的工具列表
const filteredTools = computed(() => {
if (!toolsSearchText.value) {
return availableTools.value;
}
const searchLower = toolsSearchText.value.toLowerCase();
return availableTools.value.filter(tool =>
tool.name.toLowerCase().includes(searchLower) ||
tool.description.toLowerCase().includes(searchLower)
);
});
// 根据工具ID获取工具名称
const getToolNameById = (toolId) => {
const tool = availableTools.value.find(t => t.id === toolId);
return tool ? tool.name : toolId;
};
const selectedAgent = computed(() => agents.value[selectedAgentId.value] || {});
const configSchema = computed(() => selectedAgent.value.config_schema || {});
const configurableItems = computed(() => {
const items = configSchema.value.configurable_items || {};
// 遍历所有的配置项,将所有的 x_oap_ui_config 的层级提升到上一层
Object.keys(items).forEach(key => {
const item = items[key];
if (item.x_oap_ui_config) {
items[key] = { ...item, ...item.x_oap_ui_config };
delete items[key].x_oap_ui_config;
}
});
return items;
});
2025-04-02 00:00:04 +08:00
// 配置状态
2025-04-02 13:00:25 +08:00
const agentConfig = ref({});
2025-04-02 00:00:04 +08:00
2025-05-02 23:56:59 +08:00
// 检查是否为默认智能体
const isDefaultAgent = computed(() => {
return selectedAgentId.value === defaultAgentId.value;
});
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
// 设置为默认智能体
const setAsDefaultAgent = async () => {
if (!selectedAgentId.value || !userStore.isAdmin) return;
2025-04-03 16:02:14 +08:00
2025-05-02 23:56:59 +08:00
try {
2025-07-22 17:29:38 +08:00
await agentConfigApi.setDefaultAgent(selectedAgentId.value);
2025-05-02 23:56:59 +08:00
defaultAgentId.value = selectedAgentId.value;
message.success('已将当前智能体设为默认');
} catch (error) {
console.error('设置默认智能体错误:', error);
message.error(error.message || '设置默认智能体时发生错误');
}
2025-04-03 20:45:58 +08:00
};
// 多选组件相关方法
const ensureArray = (key) => {
if (!agentConfig.value[key] || !Array.isArray(agentConfig.value[key])) {
agentConfig.value[key] = [];
}
};
const isOptionSelected = (key, option) => {
ensureArray(key);
return agentConfig.value[key].includes(option);
};
const getSelectedCount = (key) => {
ensureArray(key);
return agentConfig.value[key].length;
};
const toggleOption = (key, option) => {
ensureArray(key);
const currentOptions = [...agentConfig.value[key]];
const index = currentOptions.indexOf(option);
if (index > -1) {
currentOptions.splice(index, 1);
} else {
currentOptions.push(option);
}
agentConfig.value[key] = currentOptions;
};
const clearSelection = (key) => {
agentConfig.value[key] = [];
};
// 工具选择相关方法
const openToolsModal = async () => {
try {
// 如果工具列表还没有加载,则加载
if (availableTools.value.length === 0) {
await loadAvailableTools();
}
// 初始化已选择的工具
selectedTools.value = [...(agentConfig.value.tools || [])];
// 打开弹窗
state.toolsModalOpen = true;
} catch (error) {
console.error('打开工具选择弹窗失败:', error);
message.error('打开工具选择弹窗失败');
}
};
const toggleToolSelection = (toolId) => {
const index = selectedTools.value.indexOf(toolId);
if (index > -1) {
selectedTools.value.splice(index, 1);
} else {
selectedTools.value.push(toolId);
}
};
const removeSelectedTool = (toolId) => {
const index = agentConfig.value.tools.indexOf(toolId);
if (index > -1) {
agentConfig.value.tools.splice(index, 1);
}
};
const confirmToolsSelection = () => {
agentConfig.value.tools = [...selectedTools.value];
state.toolsModalOpen = false;
toolsSearchText.value = '';
};
const cancelToolsSelection = () => {
state.toolsModalOpen = false;
toolsSearchText.value = '';
selectedTools.value = [];
};
2025-05-02 23:56:59 +08:00
// 获取默认智能体ID
const fetchDefaultAgent = async () => {
try {
const data = await chatApi.getDefaultAgent();
defaultAgentId.value = data.default_agent_id;
2025-07-22 17:29:38 +08:00
console.debug("Default agent ID:", defaultAgentId.value);
2025-05-02 23:56:59 +08:00
} catch (error) {
console.error('获取默认智能体错误:', error);
}
2025-04-03 20:45:58 +08:00
};
// 获取智能体列表
const fetchAgents = async () => {
try {
2025-05-02 23:56:59 +08:00
const data = await chatApi.getAgents();
// 将数组转换为对象
agents.value = data.agents.reduce((acc, agent) => {
acc[agent.id] = agent;
2025-05-02 23:56:59 +08:00
return acc;
}, {});
// console.log("agents", agents.value);
// 加载当前选中智能体的配置
if (selectedAgentId.value) {
loadAgentConfig();
}
} catch (error) {
console.error('获取智能体错误:', error);
}
};
2025-04-02 00:00:04 +08:00
// 根据选中的智能体加载配置
const loadAgentConfig = async () => {
2025-04-02 13:00:25 +08:00
// BUG: 目前消息重置有问题,需要重置消息
2025-04-02 00:00:04 +08:00
if (!selectedAgentId.value || !agents.value[selectedAgentId.value]) return;
const agent = agents.value[selectedAgentId.value];
2025-04-02 13:00:25 +08:00
const schema = agent.config_schema || {};
const items = schema.configurable_items || {};
2025-04-02 00:00:04 +08:00
// 重置配置
2025-04-02 13:00:25 +08:00
agentConfig.value = {};
// 初始化基础配置项
if (schema.system_prompt) {
agentConfig.value.system_prompt = schema.system_prompt;
}
if (schema.model) {
agentConfig.value.model = schema.model;
}
if (schema.tools && schema.tools.length > 0 && schema.tools[0] != 'undefined') {
agentConfig.value.tools = schema.tools;
}
2025-04-02 13:00:25 +08:00
// 初始化可配置项
Object.keys(items).forEach(key => {
const item = items[key];
2025-04-02 00:00:04 +08:00
2025-04-02 13:00:25 +08:00
// 根据类型设置默认值
if (typeof item.default === 'boolean') {
agentConfig.value[key] = item.default;
} else if (item.type === 'list') {
// 对于 list 类型,确保初始化为数组
agentConfig.value[key] = Array.isArray(item.default) ? item.default : [];
2025-04-02 13:00:25 +08:00
} else {
agentConfig.value[key] = item.default || '';
}
});
2025-04-02 00:00:04 +08:00
try {
// 从服务器加载配置
2025-07-22 17:29:38 +08:00
const response = await agentConfigApi.getAgentConfig(selectedAgentId.value);
if (response.success && response.config) {
// 合并服务器配置
Object.keys(response.config).forEach(key => {
if (key in agentConfig.value) {
const item = items[key];
// 对于 list 类型,确保是数组
if (item && item.type === 'list') {
agentConfig.value[key] = Array.isArray(response.config[key]) ? response.config[key] : [];
} else {
agentConfig.value[key] = response.config[key];
}
}
});
2025-07-22 17:29:38 +08:00
// console.log(`从服务器加载 ${selectedAgentId.value} 配置成功, ${JSON.stringify(agentConfig.value)}`);
}
} catch (error) {
console.error('从服务器加载配置出错:', error);
2025-04-02 00:00:04 +08:00
}
};
const handleModelChange = (data) => {
agentConfig.value.model = `${data.provider}/${data.name}`;
}
2025-04-02 00:00:04 +08:00
// 保存配置
const saveConfig = async () => {
if (!selectedAgentId.value) {
message.error('没有选择智能体');
return;
}
try {
// 保存配置到服务器
2025-07-22 17:29:38 +08:00
await agentConfigApi.saveAgentConfig(selectedAgentId.value, agentConfig.value);
// 提示保存成功
message.success('配置已保存到服务器');
console.log("保存配置:", agentConfig.value);
} catch (error) {
console.error('保存配置到服务器出错:', error);
message.error('保存配置到服务器失败');
}
2025-04-02 00:00:04 +08:00
};
// 重置配置
const resetConfig = async () => {
if (!selectedAgentId.value) {
message.error('没有选择智能体');
return;
}
try {
// 保存空配置到服务器,相当于重置
2025-07-22 17:29:38 +08:00
await agentConfigApi.saveAgentConfig(selectedAgentId.value, {});
// 重新加载默认配置
await loadAgentConfig();
message.info('配置已重置');
} catch (error) {
console.error('重置配置出错:', error);
message.error('重置配置失败');
}
2025-04-02 00:00:04 +08:00
};
2025-04-01 22:16:07 +08:00
2025-04-02 00:00:04 +08:00
// 监听智能体选择变化
watch(
() => selectedAgentId.value,
() => {
loadAgentConfig();
}
);
2025-03-31 23:02:05 +08:00
// 选择智能体
const selectAgent = (agentId) => {
selectedAgentId.value = agentId;
// 保存选择到本地存储
localStorage.setItem('last-selected-agent', agentId);
2025-04-02 00:00:04 +08:00
// 加载该智能体的配置
loadAgentConfig();
2025-03-31 23:02:05 +08:00
};
// 打开智能体选择弹窗
const openAgentModal = () => {
state.agentModalOpen = true;
};
// 从弹窗中选择智能体
const selectAgentFromModal = (agentId) => {
selectAgent(agentId);
state.agentModalOpen = false;
};
// 加载工具列表
const loadAvailableTools = async () => {
try {
const response = await toolsApi.getTools();
availableTools.value = Object.values(response.tools || {});
} catch (error) {
console.error('加载工具列表失败:', error);
}
};
2025-03-31 23:02:05 +08:00
// 初始化
onMounted(async () => {
2025-05-02 23:56:59 +08:00
// 获取默认智能体
await fetchDefaultAgent();
2025-03-31 23:02:05 +08:00
// 获取智能体列表
await fetchAgents();
// 加载工具列表
await loadAvailableTools();
2025-03-31 23:02:05 +08:00
// 恢复上次选择的智能体
const lastSelectedAgent = localStorage.getItem('last-selected-agent');
if (lastSelectedAgent && agents.value[lastSelectedAgent]) {
selectedAgentId.value = lastSelectedAgent;
2025-05-02 23:56:59 +08:00
} else if (defaultAgentId.value && agents.value[defaultAgentId.value]) {
// 如果有默认智能体,优先选择默认智能体
selectedAgentId.value = defaultAgentId.value;
2025-03-31 23:02:05 +08:00
} else if (Object.keys(agents.value).length > 0) {
// 默认选择第一个智能体
selectedAgentId.value = Object.keys(agents.value)[0];
}
2025-04-02 00:00:04 +08:00
// 加载配置
loadAgentConfig();
2025-03-31 23:02:05 +08:00
});
2025-04-02 13:00:25 +08:00
// 获取配置标签
const getConfigLabel = (key, value) => {
// 根据配置项属性选择合适的显示文本
if (value.description && value.name !== key) {
2025-04-02 13:00:25 +08:00
return `${value.name}${key}`;
}
return key;
};
// 获取占位符
const getPlaceholder = (key, value) => {
// 返回描述作为占位符
return `(默认: ${value.default}` ;
};
2025-04-05 02:23:32 +08:00
// 跳转到独立智能体页面
const goToAgentPage = () => {
if (selectedAgentId.value) {
window.open(`/agent/${selectedAgentId.value}`, '_blank');
}
};
2025-05-02 23:56:59 +08:00
const toggleDebugMode = () => {
state.debug_mode = !state.debug_mode;
console.log("debug_mode", state.debug_mode);
2025-05-02 23:56:59 +08:00
};
2025-06-29 15:43:40 +08:00
const toggleConf = () => {
state.agentConfOpen = !state.agentConfOpen
}
2025-03-31 23:02:05 +08:00
</script>
<style lang="less" scoped>
.agent-view {
display: flex;
flex-direction: column;
2025-03-31 23:02:05 +08:00
width: 100%;
height: 100vh;
overflow: hidden;
--agent-view-header-height: 54px;
2025-03-31 23:02:05 +08:00
}
.agent-view-header {
height: var(--agent-view-header-height);
2025-03-31 23:02:05 +08:00
background-color: var(--bg-sider);
border-bottom: 1px solid var(--gray-200);
display: flex;
justify-content: space-between;
align-items: center;
padding: 2px 8px;
.header-left,
.header-right,
.header-center {
display: flex;
flex-direction: row;
gap: 10px;
}
.header-item {
display: flex;
align-items: center;
gap: 10px;
}
}
.agent-view-body {
--gap-radius: 6px;
display: flex;
width: 100%;
flex: 1;
min-height: calc(100% - var(--agent-view-header-height));
2025-04-01 22:16:07 +08:00
overflow: hidden;
// padding: var(--gap-radius);
// gap: var(--gap-radius);
2025-04-01 22:16:07 +08:00
// .content {
// border-radius: var(--gap-radius);
// border: 1px solid var(--gray-300);
// }
2025-03-31 23:02:05 +08:00
}
2025-06-29 15:43:40 +08:00
.content {
flex: 1;
2025-03-31 23:02:05 +08:00
overflow: hidden;
}
2025-06-29 15:43:40 +08:00
// 配置弹窗内容样式
.conf-content {
max-height: 70vh;
2025-04-05 02:23:32 +08:00
overflow-y: auto;
2025-06-29 15:43:40 +08:00
.agent-info {
padding: 0;
width: 100%;
overflow-y: visible;
max-height: none;
2025-04-05 02:23:32 +08:00
}
2025-03-31 23:02:05 +08:00
}
2025-04-01 22:16:07 +08:00
2025-06-29 15:43:40 +08:00
.agent-model {
width: 100%;
2025-04-01 22:16:07 +08:00
}
2025-04-03 16:02:14 +08:00
.config-modal-content {
user-select: text;
div[role="alert"] {
margin-bottom: 10px;
}
2025-04-03 16:02:14 +08:00
.description {
font-size: 12px;
color: var(--gray-700);
}
.form-actions {
display: flex;
justify-content: space-between;
margin-top: 20px;
gap: 10px;
.form-actions-left,
.form-actions-right {
display: flex;
gap: 10px;
}
2025-04-03 16:02:14 +08:00
}
}
2025-04-05 02:23:32 +08:00
// 添加新按钮的样式
.agent-action-buttons {
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 8px;
}
.action-button {
background-color: white;
border: 1px solid var(--main-20);
2025-04-05 02:23:32 +08:00
text-align: left;
height: auto;
padding: 8px 12px;
&:hover {
background-color: var(--main-20);
2025-04-05 02:23:32 +08:00
}
2025-05-02 23:56:59 +08:00
&.primary-action {
color: var(--main-color);
border-color: var(--main-color);
&:disabled {
color: var(--main-color);
background-color: var(--main-20);
2025-05-02 23:56:59 +08:00
cursor: not-allowed;
opacity: 0.7;
}
}
2025-04-05 02:23:32 +08:00
.anticon {
margin-right: 8px;
}
}
2025-05-02 23:56:59 +08:00
.agent-option {
display: flex;
justify-content: space-between;
align-items: flex-start;
.agent-option-content {
display: flex;
flex-direction: column;
gap: 2px;
p {
margin: 0;
}
.agent-option-description {
font-size: 12px;
color: var(--gray-700);
word-break: break-word;
white-space: pre-wrap;
}
}
2025-05-02 23:56:59 +08:00
.default-icon {
color: #faad14;
font-size: 14px;
margin-left: 4px;
2025-05-02 23:56:59 +08:00
}
}
// 工具选择器样式(与项目风格一致)
.tools-selector {
.tools-summary {
display: flex;
justify-content: space-between;
align-items: center;
// margin-bottom: 8px;
padding: 8px 12px;
background: var(--gray-50);
border-radius: 8px;
border: 1px solid var(--gray-200);
font-size: 14px;
color: var(--gray-700);
transition: border-color 0.2s ease;
.tools-summary-left {
display: flex;
align-items: center;
gap: 8px;
.tools-count {
color: var(--gray-900);
}
}
.select-tools-btn {
background: var(--main-color);
border: none;
color: #fff;
border-radius: 6px;
padding: 4px 12px;
font-size: 13px;
font-weight: 500;
height: 28px;
transition: all 0.2s ease;
&:hover {
background: var(--main-color);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
&:active {
transform: translateY(0);
}
}
}
.selected-tools-preview {
display: flex;
flex-wrap: wrap;
gap: 6px;
padding: 8px 0;
background: none;
border: none;
min-height: 32px;
:deep(.ant-tag) {
margin: 0;
padding: 4px 10px;
border-radius: 6px;
background: var(--gray-100);
border: 1px solid var(--gray-300);
color: var(--gray-900);
font-size: 13px;
font-weight: 400;
.anticon-close {
color: var(--gray-600);
margin-left: 4px;
&:hover {
color: var(--gray-900);
}
}
}
}
}
// 工具选择弹窗样式(与项目风格一致)
.tools-modal {
:deep(.ant-modal-content) {
border-radius: 8px;
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
overflow: hidden;
}
:deep(.ant-modal-header) {
background: #fff;
border-bottom: 1px solid var(--gray-200);
padding: 16px 20px;
.ant-modal-title {
font-size: 16px;
font-weight: 600;
color: var(--gray-900);
}
}
:deep(.ant-modal-body) {
padding: 20px;
background: #fff;
}
.tools-modal-content {
.tools-search {
margin-bottom: 16px;
:deep(.ant-input) {
border-radius: 8px;
border: 1px solid var(--gray-300);
padding: 8px 12px;
font-size: 14px;
&:focus {
border-color: var(--main-color);
box-shadow: none;
}
}
}
.tools-list {
max-height: 350px;
overflow-y: auto;
border: 1px solid var(--gray-200);
border-radius: 8px;
margin-bottom: 16px;
background: #fff;
.tool-item {
padding: 14px 16px;
border-bottom: 1px solid var(--gray-100);
cursor: pointer;
transition: background 0.2s, border 0.2s;
border-left: 3px solid transparent;
&:last-child { border-bottom: none; }
&:hover {
background: var(--gray-50);
}
&.selected {
background: var(--main-10);
border-left: 3px solid var(--main-color);
}
.tool-content {
.tool-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 6px;
.tool-name {
font-weight: 500;
color: var(--gray-900);
font-size: 14px;
}
.tool-indicator { display: none; }
}
.tool-description {
font-size: 13px;
color: var(--gray-700);
margin-bottom: 6px;
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
.tools-modal-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0 0 0;
border-top: 1px solid var(--gray-200);
.selected-count {
font-size: 13px;
color: var(--gray-700);
background: none;
padding: 0;
border: none;
}
.modal-actions {
display: flex;
gap: 10px;
:deep(.ant-btn) {
border-radius: 8px;
font-weight: 500;
padding: 6px 18px;
height: 36px;
font-size: 14px;
&.ant-btn-default {
border: 1px solid var(--gray-300);
color: var(--gray-900);
background: #fff;
&:hover {
border-color: var(--main-color);
color: var(--main-color);
background: var(--main-10);
}
}
&.ant-btn-primary {
background: var(--main-color);
border: none;
color: #fff;
&:hover {
background: var(--main-color);
}
}
}
}
}
}
}
// 多选卡片样式
.multi-select-cards {
.multi-select-label {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
font-size: 12px;
color: var(--gray-600);
height: 24px;
}
.options-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 8px;
}
.option-card {
border: 1px solid var(--gray-300);
border-radius: 8px;
padding: 8px 12px;
cursor: pointer;
transition: all 0.2s ease;
background: white;
user-select: none;
&:hover {
border-color: var(--main-color);
}
&.selected {
border-color: var(--main-color);
background: var(--main-10);
.option-indicator {
color: var(--main-color);
}
.option-text {
color: var(--main-color);
font-weight: 500;
}
}
&.unselected {
.option-indicator {
color: var(--gray-400);
}
.option-text {
color: var(--gray-700);
}
}
.option-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
}
.option-text {
flex: 1;
font-size: 14px;
line-height: 1.4;
word-break: break-word;
}
.option-indicator {
flex-shrink: 0;
font-size: 16px;
transition: color 0.2s ease;
}
}
}
// 响应式适配
@media (max-width: 768px) {
.multi-select-cards {
.options-grid {
grid-template-columns: 1fr;
}
}
2025-06-29 15:43:40 +08:00
.conf-content {
max-height: 60vh;
}
}
// 智能体选择器样式
.agent-selector {
border: 1px solid var(--gray-300);
border-radius: 8px;
padding: 8px 12px;
background: white;
transition: border-color 0.2s ease;
&:hover {
border-color: var(--main-color);
}
.selected-agent-display {
display: flex;
justify-content: space-between;
align-items: center;
.agent-name {
font-size: 14px;
color: var(--gray-900);
font-weight: 500;
}
.default-icon {
color: #faad14;
font-size: 14px;
}
}
}
// 智能体选择弹窗样式
.agent-modal {
:deep(.ant-modal-content) {
border-radius: 8px;
overflow: hidden;
}
:deep(.ant-modal-header) {
background: #fff;
border-bottom: 1px solid var(--gray-200);
padding: 16px 20px;
.ant-modal-title {
font-size: 16px;
font-weight: 600;
color: var(--gray-900);
}
}
:deep(.ant-modal-body) {
padding: 20px;
background: #fff;
}
.agent-modal-content {
.agents-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 12px;
max-height: 500px;
overflow-y: auto;
}
.agent-card {
border: 1px solid var(--gray-200);
border-radius: 8px;
padding: 16px;
cursor: pointer;
transition: border-color 0.2s ease;
background: white;
&:hover {
border-color: var(--main-color);
}
&.selected {
border-color: var(--main-color);
background: var(--main-10);
.agent-card-indicator {
color: var(--main-color);
}
}
.agent-card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 12px;
.agent-card-title {
display: flex;
align-items: center;
gap: 8px;
flex: 1;
.agent-card-name {
font-size: 16px;
font-weight: 600;
color: var(--gray-900);
line-height: 1.4;
}
.default-icon {
color: #faad14;
font-size: 16px;
flex-shrink: 0;
}
}
.agent-card-indicator {
font-size: 20px;
color: var(--gray-400);
transition: color 0.2s ease;
flex-shrink: 0;
}
}
.agent-card-description {
font-size: 14px;
color: var(--gray-700);
line-height: 1.5;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
// 响应式适配智能体弹窗
@media (max-width: 768px) {
.agent-modal {
.agent-modal-content {
.agents-grid {
grid-template-columns: 1fr;
}
}
}
}
2025-03-31 23:02:05 +08:00
</style>
2025-03-29 17:34:02 +08:00
<style lang="less">
2025-06-29 15:43:40 +08:00
.toggle-conf {
cursor: pointer;
&.nav-btn {
height: 2.5rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 8px;
color: var(--gray-900);
cursor: pointer;
font-size: 15px;
width: auto;
padding: 0.5rem 1rem;
transition: background-color 0.3s;
overflow: hidden;
.text {
margin-left: 10px;
}
&:hover {
background-color: var(--main-20);
}
.nav-btn-icon {
width: 1.5rem;
height: 1.5rem;
}
}
}
// 针对 Ant Design Select 组件的深度样式修复
:deep(.ant-select-item-option-content) {
.agent-option-name {
color: var(--main-color);
font-size: 14px;
font-weight: 500;
}
}
</style>