2025-03-31 22:32:19 +08:00
|
|
|
|
<template>
|
2026-01-15 04:54:53 +08:00
|
|
|
|
<div class="chat-container">
|
2025-05-15 22:34:32 +08:00
|
|
|
|
<ChatSidebarComponent
|
|
|
|
|
|
:current-chat-id="currentChatId"
|
|
|
|
|
|
:chats-list="chatsList"
|
2025-11-08 13:59:56 +08:00
|
|
|
|
:is-sidebar-open="chatUIStore.isSidebarOpen"
|
2026-03-21 16:41:32 +08:00
|
|
|
|
:is-floating="isSidebarFloating"
|
2025-11-08 13:59:56 +08:00
|
|
|
|
:is-initial-render="localUIState.isInitialRender"
|
2025-08-11 21:29:33 +08:00
|
|
|
|
:single-mode="props.singleMode"
|
|
|
|
|
|
:agents="agents"
|
2025-08-31 14:39:28 +08:00
|
|
|
|
:selected-agent-id="currentAgentId"
|
2025-11-08 13:59:56 +08:00
|
|
|
|
:is-creating-new-chat="chatUIStore.creatingNewChat"
|
2026-03-06 10:14:43 +08:00
|
|
|
|
:has-more-chats="hasMoreChats"
|
|
|
|
|
|
:is-loading-more="isLoadingMoreChats"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@create-chat="createNewChat"
|
|
|
|
|
|
@select-chat="selectChat"
|
|
|
|
|
|
@delete-chat="deleteChat"
|
|
|
|
|
|
@rename-chat="renameChat"
|
2026-03-06 20:29:58 +08:00
|
|
|
|
@toggle-pin="togglePinChat"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@toggle-sidebar="toggleSidebar"
|
2026-03-06 10:14:43 +08:00
|
|
|
|
@load-more-chats="loadMoreChats"
|
2025-06-22 19:49:42 +08:00
|
|
|
|
:class="{
|
2025-11-08 13:59:56 +08:00
|
|
|
|
'sidebar-open': chatUIStore.isSidebarOpen,
|
2026-01-15 04:54:53 +08:00
|
|
|
|
'no-transition': localUIState.isInitialRender
|
2025-06-22 19:49:42 +08:00
|
|
|
|
}"
|
2025-05-15 22:34:32 +08:00
|
|
|
|
/>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
<div class="chat">
|
|
|
|
|
|
<div class="chat-header">
|
|
|
|
|
|
<div class="header__left">
|
2026-03-20 17:51:12 +08:00
|
|
|
|
<slot name="header-left"></slot>
|
2026-03-17 00:58:56 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-if="!chatUIStore.isSidebarOpen && !userStore.isAdmin"
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
class="sidebar-logo-toggle"
|
|
|
|
|
|
@click="toggleSidebar"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img v-if="sidebarLogo" :src="sidebarLogo" alt="logo" class="sidebar-logo-image" />
|
|
|
|
|
|
<PanelLeftOpen v-else class="sidebar-logo-fallback" size="18" />
|
|
|
|
|
|
<div class="sidebar-expand-overlay">
|
|
|
|
|
|
<PanelLeftOpen class="nav-btn-icon" size="18" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-15 06:01:34 +08:00
|
|
|
|
<div
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
class="agent-nav-btn"
|
2026-03-17 00:58:56 +08:00
|
|
|
|
v-if="!chatUIStore.isSidebarOpen && userStore.isAdmin"
|
2026-01-15 06:01:34 +08:00
|
|
|
|
@click="toggleSidebar"
|
|
|
|
|
|
>
|
|
|
|
|
|
<PanelLeftOpen class="nav-btn-icon" size="18" />
|
2025-05-15 22:34:32 +08:00
|
|
|
|
</div>
|
2026-01-15 06:01:34 +08:00
|
|
|
|
<div
|
2025-11-08 17:14:54 +08:00
|
|
|
|
type="button"
|
|
|
|
|
|
class="agent-nav-btn"
|
|
|
|
|
|
v-if="!chatUIStore.isSidebarOpen"
|
|
|
|
|
|
:class="{ 'is-disabled': chatUIStore.creatingNewChat }"
|
|
|
|
|
|
@click="createNewChat"
|
|
|
|
|
|
>
|
2026-01-15 06:01:34 +08:00
|
|
|
|
<LoaderCircle
|
|
|
|
|
|
v-if="chatUIStore.creatingNewChat"
|
|
|
|
|
|
class="nav-btn-icon loading-icon"
|
|
|
|
|
|
size="18"
|
|
|
|
|
|
/>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<MessageCirclePlus v-else class="nav-btn-icon" size="16" />
|
2026-01-15 04:54:53 +08:00
|
|
|
|
<span class="text">新对话</span>
|
2025-03-31 23:02:05 +08:00
|
|
|
|
</div>
|
2026-03-23 09:43:04 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-if="currentThread?.title && currentThread.title !== '新的对话'"
|
|
|
|
|
|
class="conversation-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ currentThread.title }}
|
|
|
|
|
|
</div>
|
2025-03-31 23:02:05 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header__right">
|
2026-03-17 00:58:56 +08:00
|
|
|
|
<UserInfoComponent v-if="!userStore.isAdmin" />
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<!-- AgentState 显示按钮已移动到输入框底部 -->
|
2026-01-15 04:54:53 +08:00
|
|
|
|
<slot name="header-right"></slot>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<div class="chat-content-container">
|
|
|
|
|
|
<!-- Main Chat Area -->
|
2026-03-21 16:41:32 +08:00
|
|
|
|
<div class="chat-main" ref="chatMainRef">
|
2026-03-20 17:51:12 +08:00
|
|
|
|
<div class="chat-box">
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<div class="conv-box" v-for="(conv, index) in conversations" :key="index">
|
|
|
|
|
|
<AgentMessageComponent
|
|
|
|
|
|
v-for="(message, msgIndex) in conv.messages"
|
|
|
|
|
|
:message="message"
|
|
|
|
|
|
:key="msgIndex"
|
|
|
|
|
|
:is-processing="
|
|
|
|
|
|
isProcessing &&
|
|
|
|
|
|
conv.status === 'streaming' &&
|
|
|
|
|
|
msgIndex === conv.messages.length - 1
|
|
|
|
|
|
"
|
|
|
|
|
|
:show-refs="showMsgRefs(message)"
|
|
|
|
|
|
@retry="retryMessage(message)"
|
|
|
|
|
|
>
|
|
|
|
|
|
</AgentMessageComponent>
|
|
|
|
|
|
<!-- 显示对话最后一个消息使用的模型 -->
|
|
|
|
|
|
<RefsComponent
|
|
|
|
|
|
v-if="shouldShowRefs(conv)"
|
|
|
|
|
|
:message="getLastMessage(conv)"
|
2026-03-02 21:01:37 +08:00
|
|
|
|
:show-refs="['model', 'copy', 'sources']"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
:is-latest-message="false"
|
2026-02-24 14:22:11 +08:00
|
|
|
|
:sources="getConversationSources(conv)"
|
|
|
|
|
|
/>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
</div>
|
2025-06-24 00:15:51 +08:00
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<!-- 生成中的加载状态 - 增强条件支持主聊天和resume流程 -->
|
|
|
|
|
|
<div class="generating-status" v-if="isProcessing && conversations.length > 0">
|
|
|
|
|
|
<div class="generating-indicator">
|
|
|
|
|
|
<div class="loading-dots">
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
<div></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<span class="generating-text">正在生成回复...</span>
|
|
|
|
|
|
</div>
|
2025-06-24 00:15:51 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<div class="bottom" :class="{ 'start-screen': !conversations.length }">
|
|
|
|
|
|
<!-- 人工审批弹窗 - 放在输入框上方 -->
|
|
|
|
|
|
<HumanApprovalModal
|
|
|
|
|
|
:visible="approvalState.showModal"
|
2026-03-17 03:39:48 +08:00
|
|
|
|
:questions="approvalState.questions"
|
2026-03-07 23:28:25 +08:00
|
|
|
|
@submit="handleQuestionSubmit"
|
|
|
|
|
|
@cancel="handleQuestionCancel"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
/>
|
2025-12-19 04:04:48 +08:00
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<div class="message-input-wrapper">
|
2026-02-02 21:44:10 +08:00
|
|
|
|
<!-- 加载状态:加载消息 -->
|
|
|
|
|
|
<div v-if="isLoadingMessages" class="chat-loading">
|
|
|
|
|
|
<div class="loading-spinner"></div>
|
|
|
|
|
|
<span>正在加载消息...</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 打招呼区域 - 在输入框上方 -->
|
|
|
|
|
|
<div v-if="!conversations.length" class="chat-examples-input">
|
|
|
|
|
|
<h1>👋 您好,我是{{ currentAgentName }}!</h1>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
<div v-if="showStartAgentSegment" class="agent-segment-wrapper">
|
|
|
|
|
|
<a-segmented
|
|
|
|
|
|
:value="currentAgentId"
|
|
|
|
|
|
:options="agentSegmentOptions"
|
|
|
|
|
|
@change="handleStartAgentChange"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<AgentInputArea
|
|
|
|
|
|
v-model="userInput"
|
|
|
|
|
|
:is-loading="isProcessing"
|
|
|
|
|
|
:disabled="!currentAgent"
|
2026-03-24 21:42:37 +08:00
|
|
|
|
:send-button-disabled="isSendButtonDisabled"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
placeholder="输入问题..."
|
2026-03-20 17:51:12 +08:00
|
|
|
|
:mention="mentionConfig"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
:supports-file-upload="supportsFileUpload"
|
|
|
|
|
|
:is-panel-open="isAgentPanelOpen"
|
2026-03-24 21:48:28 +08:00
|
|
|
|
:has-active-thread="!!currentChatId"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
@send="handleSendOrStop"
|
2026-03-20 17:51:12 +08:00
|
|
|
|
@upload-attachment="handleAttachmentUpload"
|
2026-01-24 15:24:25 +08:00
|
|
|
|
@toggle-panel="toggleAgentPanel"
|
2026-03-16 21:39:49 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #actions-left-extra>
|
|
|
|
|
|
<slot name="input-actions-left"></slot>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</AgentInputArea>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 示例问题 -->
|
2025-12-19 04:04:48 +08:00
|
|
|
|
<div
|
2026-01-24 15:24:25 +08:00
|
|
|
|
class="example-questions"
|
|
|
|
|
|
v-if="!conversations.length && exampleQuestions.length > 0"
|
2025-12-19 04:04:48 +08:00
|
|
|
|
>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<div class="example-chips">
|
|
|
|
|
|
<div
|
|
|
|
|
|
v-for="question in exampleQuestions"
|
|
|
|
|
|
:key="question.id"
|
|
|
|
|
|
class="example-chip"
|
|
|
|
|
|
@click="handleExampleClick(question.text)"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ question.text }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
<div class="bottom-actions" v-if="conversations.length > 0">
|
|
|
|
|
|
<p class="note">当前智能体:{{ currentThreadAgentName }};请注意辨别内容的可靠性</p>
|
2025-12-19 04:04:48 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-24 15:24:25 +08:00
|
|
|
|
</div>
|
2025-12-19 04:04:48 +08:00
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
<!-- Agent Panel Area -->
|
|
|
|
|
|
|
2026-02-02 21:44:10 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="agent-panel-wrapper"
|
|
|
|
|
|
ref="panelWrapperRef"
|
|
|
|
|
|
:class="{
|
2026-03-24 21:48:28 +08:00
|
|
|
|
'is-visible': isAgentPanelOpen,
|
2026-02-02 21:44:10 +08:00
|
|
|
|
'no-transition': isResizing
|
|
|
|
|
|
}"
|
|
|
|
|
|
:style="{
|
2026-03-24 21:48:28 +08:00
|
|
|
|
flexBasis: isAgentPanelOpen ? `${panelRatio * 100}%` : '0px'
|
2026-02-02 21:44:10 +08:00
|
|
|
|
}"
|
|
|
|
|
|
>
|
|
|
|
|
|
<AgentPanel
|
2026-03-24 21:48:28 +08:00
|
|
|
|
v-if="isAgentPanelOpen"
|
2026-02-02 21:44:10 +08:00
|
|
|
|
:agent-state="currentAgentState"
|
2026-03-04 08:53:50 +08:00
|
|
|
|
:thread-files="currentThreadFiles"
|
2026-02-02 21:44:10 +08:00
|
|
|
|
:thread-id="currentChatId"
|
2026-03-24 21:48:28 +08:00
|
|
|
|
:agent-id="currentThread?.agent_id || currentAgentId"
|
|
|
|
|
|
:agent-config-id="selectedAgentConfigId"
|
2026-02-02 21:44:10 +08:00
|
|
|
|
:panel-ratio="panelRatio"
|
|
|
|
|
|
@refresh="handleAgentStateRefresh"
|
|
|
|
|
|
@close="toggleAgentPanel"
|
|
|
|
|
|
@resize="handlePanelResize"
|
|
|
|
|
|
@resizing="handleResizingChange"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-15 06:01:34 +08:00
|
|
|
|
</div>
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-03-24 22:48:32 +08:00
|
|
|
|
import { ref, reactive, onMounted, watch, nextTick, computed, onUnmounted, h } from 'vue'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
import { message } from 'ant-design-vue'
|
2025-12-19 04:04:48 +08:00
|
|
|
|
import AgentInputArea from '@/components/AgentInputArea.vue'
|
2025-05-15 22:34:32 +08:00
|
|
|
|
import AgentMessageComponent from '@/components/AgentMessageComponent.vue'
|
|
|
|
|
|
import ChatSidebarComponent from '@/components/ChatSidebarComponent.vue'
|
2025-06-24 00:15:51 +08:00
|
|
|
|
import RefsComponent from '@/components/RefsComponent.vue'
|
2026-03-24 22:48:32 +08:00
|
|
|
|
import { PanelLeftOpen, MessageCirclePlus, LoaderCircle, Bot, Telescope } from 'lucide-vue-next'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
import { handleChatError, handleValidationError } from '@/utils/errorHandler'
|
|
|
|
|
|
import { ScrollController } from '@/utils/scrollController'
|
|
|
|
|
|
import { AgentValidator } from '@/utils/agentValidator'
|
|
|
|
|
|
import { useAgentStore } from '@/stores/agent'
|
|
|
|
|
|
import { useChatUIStore } from '@/stores/chatUI'
|
2026-03-17 00:58:56 +08:00
|
|
|
|
import { useInfoStore } from '@/stores/info'
|
|
|
|
|
|
import { useUserStore } from '@/stores/user'
|
2026-03-23 09:43:04 +08:00
|
|
|
|
import { useConfigStore } from '@/stores/config'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
import { storeToRefs } from 'pinia'
|
|
|
|
|
|
import { MessageProcessor } from '@/utils/messageProcessor'
|
2026-03-16 19:18:45 +08:00
|
|
|
|
import { agentApi, threadApi } from '@/apis'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
import HumanApprovalModal from '@/components/HumanApprovalModal.vue'
|
|
|
|
|
|
import { useApproval } from '@/composables/useApproval'
|
2026-03-20 17:51:12 +08:00
|
|
|
|
import { useAgentThreadState } from '@/composables/useAgentThreadState'
|
|
|
|
|
|
import { useAgentRunStream } from '@/composables/useAgentRunStream'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
import { useAgentStreamHandler } from '@/composables/useAgentStreamHandler'
|
2026-03-25 13:46:52 +08:00
|
|
|
|
import { useStreamSmoother } from '@/composables/useStreamSmoother'
|
2026-03-20 17:51:12 +08:00
|
|
|
|
import { useAgentMentionConfig } from '@/composables/useAgentMentionConfig'
|
2026-01-24 15:24:25 +08:00
|
|
|
|
import AgentPanel from '@/components/AgentPanel.vue'
|
2026-03-17 00:58:56 +08:00
|
|
|
|
import UserInfoComponent from '@/components/UserInfoComponent.vue'
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== PROPS & EMITS ====================
|
2025-03-31 23:02:05 +08:00
|
|
|
|
const props = defineProps({
|
2025-08-31 12:22:49 +08:00
|
|
|
|
agentId: { type: String, default: '' },
|
2025-08-25 13:57:47 +08:00
|
|
|
|
singleMode: { type: Boolean, default: true }
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2026-03-24 02:32:35 +08:00
|
|
|
|
const emit = defineEmits(['thread-change'])
|
2025-08-11 21:29:33 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== STORE MANAGEMENT ====================
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const agentStore = useAgentStore()
|
|
|
|
|
|
const chatUIStore = useChatUIStore()
|
2026-03-17 00:58:56 +08:00
|
|
|
|
const infoStore = useInfoStore()
|
|
|
|
|
|
const userStore = useUserStore()
|
2026-03-23 09:43:04 +08:00
|
|
|
|
const configStore = useConfigStore()
|
2026-02-04 17:05:26 +08:00
|
|
|
|
const {
|
|
|
|
|
|
agents,
|
|
|
|
|
|
selectedAgentId,
|
|
|
|
|
|
defaultAgentId,
|
|
|
|
|
|
selectedAgentConfigId,
|
|
|
|
|
|
agentConfig,
|
2026-03-02 21:01:37 +08:00
|
|
|
|
configurableItems,
|
|
|
|
|
|
availableKnowledgeBases,
|
2026-03-16 19:18:45 +08:00
|
|
|
|
availableMcps,
|
|
|
|
|
|
availableSkills
|
2026-02-04 17:05:26 +08:00
|
|
|
|
} = storeToRefs(agentStore)
|
2026-03-17 00:58:56 +08:00
|
|
|
|
const { organization } = storeToRefs(infoStore)
|
2025-08-25 01:46:31 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// ==================== LOCAL CHAT & UI STATE ====================
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const userInput = ref('')
|
2026-03-24 21:42:37 +08:00
|
|
|
|
const sendCooldownActive = ref(false)
|
|
|
|
|
|
let sendCooldownTimer = null
|
2026-03-17 00:58:56 +08:00
|
|
|
|
const sidebarLogo = computed(() => organization.value?.logo || organization.value?.avatar || '')
|
2026-02-25 16:26:09 +08:00
|
|
|
|
const useRunsApi =
|
|
|
|
|
|
import.meta.env.VITE_USE_RUNS_API === 'true' &&
|
|
|
|
|
|
localStorage.getItem('force_legacy_stream') !== 'true'
|
|
|
|
|
|
|
2025-09-09 20:25:48 +08:00
|
|
|
|
// 从智能体元数据获取示例问题
|
|
|
|
|
|
const exampleQuestions = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const agentId = currentAgentId.value
|
|
|
|
|
|
let examples = []
|
2025-11-07 12:28:58 +08:00
|
|
|
|
if (agentId && agents.value && agents.value.length > 0) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const agent = agents.value.find((a) => a.id === agentId)
|
2026-03-20 12:38:42 +08:00
|
|
|
|
examples = agent ? agent.metadata?.examples || [] : []
|
2025-11-07 12:28:58 +08:00
|
|
|
|
}
|
2025-09-09 20:25:48 +08:00
|
|
|
|
return examples.map((text, index) => ({
|
|
|
|
|
|
id: index + 1,
|
|
|
|
|
|
text: text
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}))
|
|
|
|
|
|
})
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
// 业务状态(保留在组件本地)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const chatState = reactive({
|
|
|
|
|
|
currentThreadId: null,
|
|
|
|
|
|
// 以threadId为键的线程状态
|
|
|
|
|
|
threadStates: {}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2026-03-25 13:46:52 +08:00
|
|
|
|
const streamSmoother = useStreamSmoother({
|
|
|
|
|
|
getThreadState: (threadId) => chatState.threadStates[threadId] || null
|
|
|
|
|
|
})
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const { getThreadState, resetOnGoingConv, stopThreadStream } = useAgentThreadState({
|
|
|
|
|
|
chatState,
|
2026-03-25 13:46:52 +08:00
|
|
|
|
getCurrentThreadId: () => chatState.currentThreadId,
|
|
|
|
|
|
onStopThread: (threadId) => streamSmoother.flushThread(threadId),
|
|
|
|
|
|
onBeforeResetThread: (threadId) => streamSmoother.resetThread(threadId),
|
|
|
|
|
|
onBeforeCleanupThread: (threadId) => streamSmoother.resetThread(threadId)
|
2026-03-20 17:51:12 +08:00
|
|
|
|
})
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 组件级别的线程和消息状态
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threads = ref([])
|
|
|
|
|
|
const threadMessages = ref({})
|
2026-03-06 10:14:43 +08:00
|
|
|
|
const hasMoreChats = ref(true) // 是否还有更多对话可加载
|
|
|
|
|
|
const isLoadingMoreChats = ref(false) // 加载更多对话中
|
2026-03-04 08:53:50 +08:00
|
|
|
|
const threadFilesMap = ref({})
|
|
|
|
|
|
const threadAttachmentsMap = ref({})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-08 13:59:56 +08:00
|
|
|
|
// 本地 UI 状态(仅在本组件使用)
|
|
|
|
|
|
const localUIState = reactive({
|
2026-01-15 06:01:34 +08:00
|
|
|
|
isInitialRender: true
|
|
|
|
|
|
})
|
2025-08-25 13:57:47 +08:00
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
// Agent Panel State
|
|
|
|
|
|
const isAgentPanelOpen = ref(false)
|
2026-02-02 21:44:10 +08:00
|
|
|
|
const isResizing = ref(false)
|
2026-03-24 21:48:28 +08:00
|
|
|
|
const panelRatio = ref(0.3) // 面板宽度比例 (0-1)
|
2026-02-02 21:44:10 +08:00
|
|
|
|
const panelWrapperRef = ref(null) // 直接操作 DOM
|
2026-03-24 21:48:28 +08:00
|
|
|
|
const minPanelRatio = 0.2 // 最小比例 20%
|
2026-02-02 21:44:10 +08:00
|
|
|
|
const maxPanelRatio = 0.6 // 最大比例 60%
|
|
|
|
|
|
let panelContainerWidth = 0
|
2025-11-14 12:50:32 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== COMPUTED PROPERTIES ====================
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const currentAgentId = computed(() => {
|
|
|
|
|
|
if (props.singleMode) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return props.agentId || defaultAgentId.value
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} else {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return selectedAgentId.value
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-07 12:28:58 +08:00
|
|
|
|
const currentAgentName = computed(() => {
|
2026-01-24 15:24:25 +08:00
|
|
|
|
const agent = currentAgent.value
|
|
|
|
|
|
return agent ? agent.name : '智能体'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2025-11-07 12:38:29 +08:00
|
|
|
|
const currentAgent = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!currentAgentId.value || !agents.value || !agents.value.length) return null
|
|
|
|
|
|
return agents.value.find((a) => a.id === currentAgentId.value) || null
|
|
|
|
|
|
})
|
|
|
|
|
|
const chatsList = computed(() => threads.value || [])
|
|
|
|
|
|
const currentChatId = computed(() => chatState.currentThreadId)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const currentThread = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!currentChatId.value) return null
|
|
|
|
|
|
return threads.value.find((thread) => thread.id === currentChatId.value) || null
|
|
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const currentThreadAgentName = computed(() => {
|
|
|
|
|
|
const threadAgentId = currentThread.value?.agent_id
|
|
|
|
|
|
if (threadAgentId && agents.value?.length) {
|
|
|
|
|
|
const threadAgent = agents.value.find((agent) => agent.id === threadAgentId)
|
|
|
|
|
|
if (threadAgent?.name) {
|
|
|
|
|
|
return threadAgent.name
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return currentAgentName.value
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2025-11-08 10:51:30 +08:00
|
|
|
|
// 检查当前智能体是否支持文件上传
|
|
|
|
|
|
const supportsFileUpload = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!currentAgent.value) return false
|
|
|
|
|
|
const capabilities = currentAgent.value.capabilities || []
|
|
|
|
|
|
return capabilities.includes('file_upload')
|
|
|
|
|
|
})
|
2025-11-14 12:50:32 +08:00
|
|
|
|
const supportsTodo = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!currentAgent.value) return false
|
|
|
|
|
|
const capabilities = currentAgent.value.capabilities || []
|
|
|
|
|
|
return capabilities.includes('todo')
|
|
|
|
|
|
})
|
2025-11-14 12:50:32 +08:00
|
|
|
|
|
|
|
|
|
|
const supportsFiles = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!currentAgent.value) return false
|
|
|
|
|
|
const capabilities = currentAgent.value.capabilities || []
|
|
|
|
|
|
return capabilities.includes('files')
|
|
|
|
|
|
})
|
2025-11-14 12:50:32 +08:00
|
|
|
|
|
|
|
|
|
|
// AgentState 相关计算属性
|
|
|
|
|
|
const currentAgentState = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return currentChatId.value ? getThreadState(currentChatId.value)?.agentState || null : null
|
|
|
|
|
|
})
|
2026-03-04 08:53:50 +08:00
|
|
|
|
const currentThreadFiles = computed(() => {
|
|
|
|
|
|
if (!currentChatId.value) return []
|
|
|
|
|
|
return threadFilesMap.value[currentChatId.value] || []
|
|
|
|
|
|
})
|
|
|
|
|
|
const currentThreadAttachments = computed(() => {
|
|
|
|
|
|
if (!currentChatId.value) return []
|
|
|
|
|
|
return threadAttachmentsMap.value[currentChatId.value] || []
|
|
|
|
|
|
})
|
2025-11-17 12:01:59 +08:00
|
|
|
|
|
2025-11-14 12:50:32 +08:00
|
|
|
|
const hasAgentStateContent = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const s = currentAgentState.value
|
2026-03-04 08:53:50 +08:00
|
|
|
|
if (!s && currentThreadFiles.value.length === 0) return false
|
|
|
|
|
|
const todoCount = Array.isArray(s?.todos) ? s.todos.length : 0
|
|
|
|
|
|
const fileCount = currentThreadFiles.value.filter((item) => item?.is_dir !== true).length
|
2026-02-13 22:16:11 +08:00
|
|
|
|
return todoCount > 0 || fileCount > 0
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-11-14 12:50:32 +08:00
|
|
|
|
|
2026-03-09 01:23:15 +08:00
|
|
|
|
// 监听 hasAgentStateContent 从 false → true 时,自动展开面板
|
|
|
|
|
|
watch(hasAgentStateContent, (newVal, oldVal) => {
|
|
|
|
|
|
if (newVal && !oldVal) {
|
|
|
|
|
|
// 从无状态变为有状态时,自动展开面板
|
|
|
|
|
|
isAgentPanelOpen.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const { mentionConfig } = useAgentMentionConfig({
|
|
|
|
|
|
currentAgentState,
|
2026-03-25 05:26:00 +08:00
|
|
|
|
currentThreadAttachments,
|
2026-03-20 17:51:12 +08:00
|
|
|
|
configurableItems,
|
|
|
|
|
|
agentConfig,
|
|
|
|
|
|
availableKnowledgeBases,
|
|
|
|
|
|
availableMcps,
|
|
|
|
|
|
availableSkills
|
2026-02-04 17:05:26 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const currentThreadMessages = computed(() => threadMessages.value[currentChatId.value] || [])
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 计算是否显示Refs组件的条件
|
|
|
|
|
|
const shouldShowRefs = computed(() => {
|
|
|
|
|
|
return (conv) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return (
|
|
|
|
|
|
getLastMessage(conv) &&
|
|
|
|
|
|
conv.status !== 'streaming' &&
|
|
|
|
|
|
!approvalState.showModal &&
|
|
|
|
|
|
!(
|
|
|
|
|
|
approvalState.threadId &&
|
|
|
|
|
|
chatState.currentThreadId === approvalState.threadId &&
|
|
|
|
|
|
isProcessing.value
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 当前线程状态的computed属性
|
|
|
|
|
|
const currentThreadState = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return getThreadState(currentChatId.value)
|
|
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
const onGoingConvMessages = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadState = currentThreadState.value
|
|
|
|
|
|
if (!threadState || !threadState.onGoingConv) return []
|
2025-09-03 03:00:25 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const msgs = Object.values(threadState.onGoingConv.msgChunks).map(
|
|
|
|
|
|
MessageProcessor.mergeMessageChunk
|
|
|
|
|
|
)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
return msgs.length > 0
|
2026-01-15 06:01:34 +08:00
|
|
|
|
? MessageProcessor.convertToolResultToMessages(msgs).filter((msg) => msg.type !== 'tool')
|
|
|
|
|
|
: []
|
|
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-12-19 14:41:23 +08:00
|
|
|
|
const historyConversations = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return MessageProcessor.convertServerHistoryToMessages(currentThreadMessages.value)
|
|
|
|
|
|
})
|
2025-12-19 14:41:23 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const conversations = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const historyConvs = historyConversations.value
|
2025-10-15 02:37:42 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果有进行中的消息且线程状态显示正在流式处理,添加进行中的对话
|
2025-12-19 02:22:29 +08:00
|
|
|
|
if (onGoingConvMessages.value.length > 0) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const onGoingConv = {
|
|
|
|
|
|
messages: onGoingConvMessages.value,
|
|
|
|
|
|
status: 'streaming'
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
return [...historyConvs, onGoingConv]
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return historyConvs
|
|
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-03-24 22:48:32 +08:00
|
|
|
|
// 智能体图标映射
|
|
|
|
|
|
const agentIconMap = {
|
|
|
|
|
|
ChatbotAgent: Bot,
|
|
|
|
|
|
DeepAgent: Telescope
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const getAgentIconComponent = (agentId) => {
|
|
|
|
|
|
return agentIconMap[agentId] || Bot
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const agentSegmentOptions = computed(() => {
|
2026-03-24 22:48:32 +08:00
|
|
|
|
return (agents.value || []).map((agent) => {
|
|
|
|
|
|
const IconComponent = getAgentIconComponent(agent.id)
|
|
|
|
|
|
return {
|
|
|
|
|
|
label: () =>
|
|
|
|
|
|
h('div', { class: 'agent-option-label' }, [
|
|
|
|
|
|
h(IconComponent, { size: 16, class: 'agent-option-icon' }),
|
|
|
|
|
|
h('span', null, agent.name || 'Unknown')
|
|
|
|
|
|
]),
|
|
|
|
|
|
value: agent.id
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2026-03-16 21:39:49 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const showStartAgentSegment = computed(() => {
|
|
|
|
|
|
return !props.singleMode && !conversations.value.length && agentSegmentOptions.value.length > 1
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const handleStartAgentChange = async (agentId) => {
|
|
|
|
|
|
if (!agentId || agentId === currentAgentId.value) return
|
|
|
|
|
|
if (conversations.value.length > 0) return
|
|
|
|
|
|
try {
|
|
|
|
|
|
await agentStore.selectAgent(agentId)
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'load')
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const isLoadingMessages = computed(() => chatUIStore.isLoadingMessages)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const isStreaming = computed(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadState = currentThreadState.value
|
|
|
|
|
|
return threadState ? threadState.isStreaming : false
|
|
|
|
|
|
})
|
|
|
|
|
|
const isProcessing = computed(() => isStreaming.value)
|
2026-03-24 21:42:37 +08:00
|
|
|
|
const isSendButtonDisabled = computed(() => {
|
2026-03-24 22:37:03 +08:00
|
|
|
|
return (
|
|
|
|
|
|
sendCooldownActive.value || ((!userInput.value || !currentAgent.value) && !isProcessing.value)
|
|
|
|
|
|
)
|
2026-03-24 21:42:37 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const startSendCooldown = () => {
|
|
|
|
|
|
sendCooldownActive.value = true
|
|
|
|
|
|
if (sendCooldownTimer) {
|
|
|
|
|
|
clearTimeout(sendCooldownTimer)
|
|
|
|
|
|
}
|
|
|
|
|
|
sendCooldownTimer = setTimeout(() => {
|
|
|
|
|
|
sendCooldownActive.value = false
|
|
|
|
|
|
sendCooldownTimer = null
|
|
|
|
|
|
}, 2000)
|
|
|
|
|
|
}
|
2025-08-10 21:58:41 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== SCROLL & RESIZE HANDLING ====================
|
2026-01-24 15:24:25 +08:00
|
|
|
|
const scrollController = new ScrollController('.chat-main')
|
2026-03-21 16:41:32 +08:00
|
|
|
|
const chatMainRef = ref(null)
|
|
|
|
|
|
const isSidebarFloating = ref(false)
|
|
|
|
|
|
let chatMainResizeObserver = null
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
nextTick(() => {
|
2026-01-24 15:24:25 +08:00
|
|
|
|
const chatMainContainer = document.querySelector('.chat-main')
|
|
|
|
|
|
if (chatMainContainer) {
|
|
|
|
|
|
chatMainContainer.addEventListener('scroll', scrollController.handleScroll, { passive: true })
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
2026-03-21 16:41:32 +08:00
|
|
|
|
|
|
|
|
|
|
if (window.ResizeObserver && chatMainRef.value) {
|
|
|
|
|
|
chatMainResizeObserver = new ResizeObserver((entries) => {
|
|
|
|
|
|
for (const entry of entries) {
|
|
|
|
|
|
const width = entry.contentRect.width
|
|
|
|
|
|
const isTakingSpace = chatUIStore.isSidebarOpen && !isSidebarFloating.value
|
2026-03-24 02:32:35 +08:00
|
|
|
|
|
2026-03-21 16:41:32 +08:00
|
|
|
|
if (isTakingSpace) {
|
|
|
|
|
|
if (width < 600) {
|
|
|
|
|
|
isSidebarFloating.value = true
|
|
|
|
|
|
chatUIStore.isSidebarOpen = false
|
|
|
|
|
|
localStorage.setItem('chat_sidebar_open', 'false')
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (width >= 880) {
|
|
|
|
|
|
isSidebarFloating.value = false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
isSidebarFloating.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
chatMainResizeObserver.observe(chatMainRef.value)
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
localUIState.isInitialRender = false
|
|
|
|
|
|
}, 300)
|
|
|
|
|
|
})
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
scrollController.cleanup()
|
2026-03-21 16:41:32 +08:00
|
|
|
|
if (chatMainResizeObserver) {
|
|
|
|
|
|
chatMainResizeObserver.disconnect()
|
|
|
|
|
|
}
|
2026-03-24 21:42:37 +08:00
|
|
|
|
if (sendCooldownTimer) {
|
|
|
|
|
|
clearTimeout(sendCooldownTimer)
|
|
|
|
|
|
sendCooldownTimer = null
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
// 清理所有线程状态
|
|
|
|
|
|
resetOnGoingConv()
|
|
|
|
|
|
})
|
2025-08-25 01:46:31 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// ==================== 线程管理方法 ====================
|
|
|
|
|
|
// 获取当前智能体的线程列表
|
|
|
|
|
|
const fetchThreads = async (agentId = null) => {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const targetAgentId = props.singleMode ? agentId || currentAgentId.value : agentId
|
|
|
|
|
|
if (props.singleMode && !targetAgentId) return
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatUIStore.isLoadingThreads = true
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-03-06 10:14:43 +08:00
|
|
|
|
const fetchedThreads = await threadApi.getThreads(targetAgentId, 100, 0)
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threads.value = fetchedThreads || []
|
2026-03-06 10:14:43 +08:00
|
|
|
|
// 如果返回的数量小于limit,说明没有更多了
|
|
|
|
|
|
hasMoreChats.value = fetchedThreads && fetchedThreads.length >= 100
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.error('Failed to fetch threads:', error)
|
|
|
|
|
|
handleChatError(error, 'fetch')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} finally {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatUIStore.isLoadingThreads = false
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-03-06 10:14:43 +08:00
|
|
|
|
// 加载更多对话
|
|
|
|
|
|
const loadMoreChats = async () => {
|
|
|
|
|
|
if (isLoadingMoreChats.value || !hasMoreChats.value) return
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const targetAgentId = props.singleMode ? currentAgentId.value : null
|
|
|
|
|
|
if (props.singleMode && !targetAgentId) return
|
2026-03-06 10:14:43 +08:00
|
|
|
|
|
|
|
|
|
|
isLoadingMoreChats.value = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
const offset = threads.value.length
|
|
|
|
|
|
const fetchedThreads = await threadApi.getThreads(targetAgentId, 100, offset)
|
|
|
|
|
|
if (fetchedThreads && fetchedThreads.length > 0) {
|
2026-03-06 20:29:58 +08:00
|
|
|
|
// 去除重复的置顶对话(后端每次都返回所有置顶对话)
|
|
|
|
|
|
const existingIds = new Set(threads.value.map((t) => t.id))
|
|
|
|
|
|
const newThreads = fetchedThreads.filter((t) => !existingIds.has(t.id))
|
|
|
|
|
|
|
|
|
|
|
|
threads.value = [...threads.value, ...newThreads]
|
|
|
|
|
|
hasMoreChats.value = newThreads.length >= 100
|
2026-03-06 10:14:43 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
hasMoreChats.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to load more chats:', error)
|
|
|
|
|
|
handleChatError(error, 'fetch')
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
isLoadingMoreChats.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 创建新线程
|
|
|
|
|
|
const createThread = async (agentId, title = '新的对话') => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!agentId) return null
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.isCreatingThread = true
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const thread = await threadApi.createThread(agentId, title)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (thread) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threads.value.unshift(thread)
|
|
|
|
|
|
threadMessages.value[thread.id] = []
|
2026-03-04 08:53:50 +08:00
|
|
|
|
threadFilesMap.value[thread.id] = []
|
|
|
|
|
|
threadAttachmentsMap.value[thread.id] = []
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return thread
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.error('Failed to create thread:', error)
|
|
|
|
|
|
handleChatError(error, 'create')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} finally {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.isCreatingThread = false
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 删除线程
|
|
|
|
|
|
const deleteThread = async (threadId) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!threadId) return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.isDeletingThread = true
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await threadApi.deleteThread(threadId)
|
|
|
|
|
|
threads.value = threads.value.filter((thread) => thread.id !== threadId)
|
|
|
|
|
|
delete threadMessages.value[threadId]
|
2026-03-04 08:53:50 +08:00
|
|
|
|
delete threadFilesMap.value[threadId]
|
|
|
|
|
|
delete threadAttachmentsMap.value[threadId]
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
if (chatState.currentThreadId === threadId) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.currentThreadId = null
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.error('Failed to delete thread:', error)
|
|
|
|
|
|
handleChatError(error, 'delete')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} finally {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.isDeletingThread = false
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 更新线程标题
|
2026-03-06 20:29:58 +08:00
|
|
|
|
const updateThread = async (threadId, title, is_pinned) => {
|
|
|
|
|
|
if (!threadId) return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-03-06 20:29:58 +08:00
|
|
|
|
if (title) {
|
|
|
|
|
|
const normalizedTitle = String(title).replace(/\s+/g, ' ').trim().slice(0, 255)
|
|
|
|
|
|
if (!normalizedTitle) return
|
2026-02-20 23:41:44 +08:00
|
|
|
|
|
2026-03-06 20:29:58 +08:00
|
|
|
|
chatState.isRenamingThread = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
await threadApi.updateThread(threadId, normalizedTitle, is_pinned)
|
|
|
|
|
|
const thread = threads.value.find((t) => t.id === threadId)
|
|
|
|
|
|
if (thread) {
|
|
|
|
|
|
thread.title = normalizedTitle
|
|
|
|
|
|
if (is_pinned !== undefined) {
|
|
|
|
|
|
thread.is_pinned = is_pinned
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to update thread:', error)
|
|
|
|
|
|
handleChatError(error, 'update')
|
|
|
|
|
|
throw error
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
chatState.isRenamingThread = false
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (is_pinned !== undefined) {
|
|
|
|
|
|
// 只更新置顶状态
|
|
|
|
|
|
try {
|
|
|
|
|
|
await threadApi.updateThread(threadId, null, is_pinned)
|
|
|
|
|
|
const thread = threads.value.find((t) => t.id === threadId)
|
|
|
|
|
|
if (thread) {
|
|
|
|
|
|
thread.is_pinned = is_pinned
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Failed to update thread pin status:', error)
|
|
|
|
|
|
handleChatError(error, 'update')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取线程消息
|
2025-11-12 11:00:39 +08:00
|
|
|
|
const fetchThreadMessages = async ({ agentId, threadId, delay = 0 }) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!threadId || !agentId) return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-12 11:00:39 +08:00
|
|
|
|
// 如果指定了延迟,等待指定时间(用于确保后端数据库事务提交)
|
|
|
|
|
|
if (delay > 0) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, delay))
|
2025-11-12 11:00:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const response = await agentApi.getAgentHistory(agentId, threadId)
|
|
|
|
|
|
threadMessages.value[threadId] = response.history || []
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'load')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-03-04 08:53:50 +08:00
|
|
|
|
const fetchThreadFiles = async (threadId) => {
|
|
|
|
|
|
if (!threadId) return
|
|
|
|
|
|
try {
|
2026-03-25 05:26:00 +08:00
|
|
|
|
const response = await threadApi.listThreadFiles(threadId, '/home/yuxi/user-data', true)
|
2026-03-14 23:54:52 +08:00
|
|
|
|
const entries = Array.isArray(response?.files) ? response.files : []
|
2026-03-04 08:53:50 +08:00
|
|
|
|
threadFilesMap.value[threadId] = entries
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.warn('Failed to fetch thread files:', error)
|
|
|
|
|
|
threadFilesMap.value[threadId] = []
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const fetchThreadAttachments = async (threadId) => {
|
|
|
|
|
|
if (!threadId) return
|
|
|
|
|
|
try {
|
|
|
|
|
|
const response = await threadApi.getThreadAttachments(threadId)
|
|
|
|
|
|
threadAttachmentsMap.value[threadId] = Array.isArray(response?.attachments)
|
|
|
|
|
|
? response.attachments
|
|
|
|
|
|
: []
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.warn('Failed to fetch thread attachments:', error)
|
|
|
|
|
|
threadAttachmentsMap.value[threadId] = []
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const refreshThreadFilesAndAttachments = async (threadId) => {
|
|
|
|
|
|
if (!threadId) return
|
|
|
|
|
|
await Promise.all([fetchThreadFiles(threadId), fetchThreadAttachments(threadId)])
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-17 12:01:59 +08:00
|
|
|
|
const fetchAgentState = async (agentId, threadId) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!agentId || !threadId) return
|
2025-11-17 12:01:59 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const res = await agentApi.getAgentState(agentId, threadId)
|
2026-02-13 22:16:11 +08:00
|
|
|
|
const targetChatId = currentChatId.value || threadId
|
|
|
|
|
|
const ts = getThreadState(targetChatId)
|
|
|
|
|
|
if (ts) {
|
|
|
|
|
|
ts.agentState = res.agent_state || null
|
|
|
|
|
|
} else {
|
|
|
|
|
|
const newTs = getThreadState(threadId)
|
|
|
|
|
|
if (newTs) newTs.agentState = res.agent_state || null
|
|
|
|
|
|
}
|
2026-02-24 14:22:11 +08:00
|
|
|
|
} catch {
|
|
|
|
|
|
// 忽略状态拉取失败,不阻塞主流程
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-17 12:01:59 +08:00
|
|
|
|
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const ensureActiveThread = async (title = '新的对话') => {
|
|
|
|
|
|
if (currentChatId.value) return currentChatId.value
|
2026-02-25 16:26:09 +08:00
|
|
|
|
try {
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const newThread = await createThread(currentAgentId.value, title || '新的对话')
|
|
|
|
|
|
if (newThread) {
|
|
|
|
|
|
chatState.currentThreadId = newThread.id
|
|
|
|
|
|
return newThread.id
|
|
|
|
|
|
}
|
2026-02-25 16:26:09 +08:00
|
|
|
|
} catch {
|
2026-03-20 17:51:12 +08:00
|
|
|
|
// createThread 已处理错误提示
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
2026-03-20 17:51:12 +08:00
|
|
|
|
return null
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const handleAttachmentUpload = async (files) => {
|
|
|
|
|
|
if (!files?.length) return
|
2026-03-24 21:48:28 +08:00
|
|
|
|
if (
|
|
|
|
|
|
!AgentValidator.validateAgentIdWithError(
|
|
|
|
|
|
currentAgentId.value,
|
|
|
|
|
|
'上传附件',
|
|
|
|
|
|
handleValidationError
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
return
|
|
|
|
|
|
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const preferredTitle = files[0]?.name || '新的对话'
|
|
|
|
|
|
let threadId = currentChatId.value
|
2026-02-25 16:26:09 +08:00
|
|
|
|
|
2026-03-20 17:51:12 +08:00
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
threadId = await ensureActiveThread(preferredTitle)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-20 17:51:12 +08:00
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
message.error('创建对话失败,无法上传附件')
|
2026-02-25 16:26:09 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
2026-03-20 17:51:12 +08:00
|
|
|
|
message.loading({
|
|
|
|
|
|
content: '正在上传附件...',
|
|
|
|
|
|
key: 'upload-attachment',
|
|
|
|
|
|
duration: 0
|
2026-02-25 16:26:09 +08:00
|
|
|
|
})
|
2026-03-20 17:51:12 +08:00
|
|
|
|
for (const file of files) {
|
|
|
|
|
|
await threadApi.uploadThreadAttachment(threadId, file)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
2026-03-20 17:51:12 +08:00
|
|
|
|
message.success({ content: '附件上传成功', key: 'upload-attachment', duration: 2 })
|
|
|
|
|
|
await fetchAgentState(currentAgentId.value, threadId)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
} catch (error) {
|
2026-03-20 17:51:12 +08:00
|
|
|
|
message.destroy('upload-attachment')
|
|
|
|
|
|
handleChatError(error, 'upload')
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// ==================== 审批功能管理 ====================
|
|
|
|
|
|
const { approvalState, handleApproval, processApprovalInStream } = useApproval({
|
|
|
|
|
|
getThreadState,
|
|
|
|
|
|
resetOnGoingConv,
|
|
|
|
|
|
fetchThreadMessages
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2026-02-25 16:26:09 +08:00
|
|
|
|
const { handleAgentResponse, handleStreamChunk } = useAgentStreamHandler({
|
2025-12-19 04:04:48 +08:00
|
|
|
|
getThreadState,
|
|
|
|
|
|
processApprovalInStream,
|
|
|
|
|
|
currentAgentId,
|
|
|
|
|
|
supportsTodo,
|
2026-03-25 13:46:52 +08:00
|
|
|
|
supportsFiles,
|
|
|
|
|
|
streamSmoother
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2026-03-20 17:51:12 +08:00
|
|
|
|
const { startRunStream, resumeActiveRunForThread, stopRunStreamSubscription } = useAgentRunStream({
|
|
|
|
|
|
getThreadState,
|
|
|
|
|
|
useRunsApi,
|
|
|
|
|
|
currentAgentId,
|
|
|
|
|
|
handleStreamChunk,
|
|
|
|
|
|
processApprovalInStream,
|
|
|
|
|
|
fetchThreadMessages,
|
|
|
|
|
|
fetchAgentState,
|
|
|
|
|
|
resetOnGoingConv,
|
2026-03-25 13:46:52 +08:00
|
|
|
|
onScrollToBottom: () => scrollController.scrollToBottom(),
|
|
|
|
|
|
streamSmoother
|
2026-03-20 17:51:12 +08:00
|
|
|
|
})
|
2025-12-19 04:04:48 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
// 发送消息并处理流式响应
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const sendMessage = async ({
|
|
|
|
|
|
agentId,
|
|
|
|
|
|
threadId,
|
|
|
|
|
|
text,
|
|
|
|
|
|
signal = undefined,
|
|
|
|
|
|
imageData = undefined
|
|
|
|
|
|
}) => {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!agentId || !threadId || !text) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const error = new Error('Missing agent, thread, or message text')
|
|
|
|
|
|
handleChatError(error, 'send')
|
|
|
|
|
|
return Promise.reject(error)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-25 03:36:08 +08:00
|
|
|
|
if (!selectedAgentConfigId.value) {
|
|
|
|
|
|
const error = new Error('Missing agent_config_id')
|
|
|
|
|
|
handleChatError(error, 'send')
|
|
|
|
|
|
return Promise.reject(error)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const requestData = {
|
|
|
|
|
|
query: text,
|
|
|
|
|
|
config: {
|
2026-01-22 05:57:13 +08:00
|
|
|
|
thread_id: threadId,
|
2026-03-25 03:36:08 +08:00
|
|
|
|
agent_config_id: selectedAgentConfigId.value
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-12 14:04:34 +08:00
|
|
|
|
// 如果有图片,添加到请求中
|
|
|
|
|
|
if (imageData && imageData.imageContent) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
requestData.image_content = imageData.imageContent
|
2025-11-12 14:04:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return await agentApi.sendAgentMessage(agentId, requestData, signal ? { signal } : undefined)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'send')
|
|
|
|
|
|
throw error
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
// ==================== CHAT ACTIONS ====================
|
2026-03-08 22:33:24 +08:00
|
|
|
|
// 获取第一个非置顶的对话
|
|
|
|
|
|
const getFirstNonPinnedChat = (chatList) => {
|
2026-03-09 01:23:15 +08:00
|
|
|
|
if (!chatList || chatList.length === 0) return null
|
2026-03-08 22:33:24 +08:00
|
|
|
|
return chatList.find((chat) => !chat.is_pinned) || chatList[0]
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const createNewChat = async () => {
|
2026-03-24 02:32:35 +08:00
|
|
|
|
const previousThreadId = chatState.currentThreadId
|
|
|
|
|
|
if (previousThreadId) {
|
|
|
|
|
|
stopThreadStream(previousThreadId)
|
|
|
|
|
|
// run 模式下仅断开 SSE 订阅,不取消后台运行任务
|
|
|
|
|
|
stopRunStreamSubscription(previousThreadId)
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2026-03-25 05:26:00 +08:00
|
|
|
|
isAgentPanelOpen.value = false
|
2026-03-24 02:32:35 +08:00
|
|
|
|
// 进入未选中对话空态,路由由 thread-change 统一同步到 /agent
|
|
|
|
|
|
chatState.currentThreadId = null
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const selectChat = async (chatId) => {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const targetChat = threads.value.find((chat) => chat.id === chatId) || null
|
|
|
|
|
|
const targetAgentId = targetChat?.agent_id || currentAgentId.value
|
|
|
|
|
|
const previousThreadId = chatState.currentThreadId
|
|
|
|
|
|
|
|
|
|
|
|
if (!targetAgentId) {
|
|
|
|
|
|
handleValidationError('选择对话失败:缺少智能体信息')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!AgentValidator.validateAgentIdWithError(targetAgentId, '选择对话', handleValidationError))
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 中断之前线程的流式输出(如果存在)
|
|
|
|
|
|
if (previousThreadId && previousThreadId !== chatId) {
|
2026-03-20 17:51:12 +08:00
|
|
|
|
stopThreadStream(previousThreadId)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
// run 模式下仅断开 SSE 订阅,不取消后台运行任务
|
|
|
|
|
|
stopRunStreamSubscription(previousThreadId)
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 21:48:28 +08:00
|
|
|
|
if (previousThreadId !== chatId) {
|
|
|
|
|
|
isAgentPanelOpen.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
// 先更新当前线程,确保底部智能体名称与选中项即时同步
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.currentThreadId = chatId
|
2026-03-16 21:39:49 +08:00
|
|
|
|
|
|
|
|
|
|
if (!props.singleMode && targetChat?.agent_id && targetChat.agent_id !== currentAgentId.value) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await agentStore.selectAgent(targetChat.agent_id)
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
chatState.currentThreadId = previousThreadId
|
|
|
|
|
|
handleChatError(error, 'load')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatUIStore.isLoadingMessages = true
|
2025-08-31 14:39:28 +08:00
|
|
|
|
try {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
await fetchThreadMessages({ agentId: targetAgentId, threadId: chatId })
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'load')
|
2025-08-31 14:39:28 +08:00
|
|
|
|
} finally {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatUIStore.isLoadingMessages = false
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await nextTick()
|
|
|
|
|
|
scrollController.scrollToBottomStaticForce()
|
2026-03-20 21:07:48 +08:00
|
|
|
|
// await fetchAgentState(targetAgentId, chatId)
|
2026-03-04 08:53:50 +08:00
|
|
|
|
await handleAgentStateRefresh(chatId)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
await resumeActiveRunForThread(chatId)
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2026-03-24 02:32:35 +08:00
|
|
|
|
const selectThreadFromRoute = async (threadId) => {
|
|
|
|
|
|
if (!agentStore.isInitialized) {
|
|
|
|
|
|
await initAll()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!threadId) {
|
|
|
|
|
|
const previousThreadId = chatState.currentThreadId
|
|
|
|
|
|
if (previousThreadId) {
|
|
|
|
|
|
stopThreadStream(previousThreadId)
|
|
|
|
|
|
stopRunStreamSubscription(previousThreadId)
|
|
|
|
|
|
}
|
|
|
|
|
|
chatState.currentThreadId = null
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (chatState.currentThreadId === threadId) {
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!threads.value.length || !threads.value.find((thread) => thread.id === threadId)) {
|
|
|
|
|
|
await loadChatsList()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const targetThread = threads.value.find((thread) => thread.id === threadId)
|
|
|
|
|
|
if (!targetThread) {
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
await selectChat(threadId)
|
|
|
|
|
|
return true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const deleteChat = async (chatId) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (
|
|
|
|
|
|
!AgentValidator.validateAgentIdWithError(
|
|
|
|
|
|
currentAgentId.value,
|
|
|
|
|
|
'删除对话',
|
|
|
|
|
|
handleValidationError
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await deleteThread(chatId)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (chatState.currentThreadId === chatId) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatState.currentThreadId = null
|
2026-03-24 02:32:35 +08:00
|
|
|
|
// 删除当前对话后回到空态,发送消息时再创建新线程
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await createNewChat()
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'delete')
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
const renameChat = async (data) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
let { chatId, title } = data
|
|
|
|
|
|
if (
|
|
|
|
|
|
!AgentValidator.validateRenameOperation(
|
|
|
|
|
|
chatId,
|
|
|
|
|
|
title,
|
|
|
|
|
|
currentAgentId.value,
|
|
|
|
|
|
handleValidationError
|
|
|
|
|
|
)
|
|
|
|
|
|
)
|
|
|
|
|
|
return
|
|
|
|
|
|
if (title.length > 30) title = title.slice(0, 30)
|
2025-08-25 13:57:47 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await updateThread(chatId, title)
|
2025-08-25 13:57:47 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'rename')
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2026-03-06 20:29:58 +08:00
|
|
|
|
const togglePinChat = async (chatId) => {
|
|
|
|
|
|
const chat = chatsList.value.find((c) => c.id === chatId)
|
|
|
|
|
|
if (!chat) return
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 保存当前选中的对话ID
|
|
|
|
|
|
const prevChatId = currentChatId.value
|
|
|
|
|
|
|
|
|
|
|
|
await updateThread(chatId, null, !chat.is_pinned)
|
|
|
|
|
|
|
|
|
|
|
|
// 刷新对话列表
|
|
|
|
|
|
await loadChatsList()
|
|
|
|
|
|
|
|
|
|
|
|
// 恢复当前选中的对话
|
|
|
|
|
|
if (prevChatId) {
|
|
|
|
|
|
chatState.currentThreadId = prevChatId
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'pin')
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-19 04:04:48 +08:00
|
|
|
|
const handleSendMessage = async ({ image } = {}) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const text = userInput.value.trim()
|
2026-03-24 21:42:37 +08:00
|
|
|
|
if ((!text && !image) || !currentAgent.value || isProcessing.value || sendCooldownActive.value)
|
|
|
|
|
|
return
|
|
|
|
|
|
|
2026-03-25 03:36:08 +08:00
|
|
|
|
if (!selectedAgentConfigId.value) {
|
|
|
|
|
|
message.error('请先选择智能体配置后再发送消息')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 21:42:37 +08:00
|
|
|
|
// 发送后进入短暂冷却,防止连续触发停止
|
|
|
|
|
|
startSendCooldown()
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
let threadId = currentChatId.value
|
2025-11-08 10:51:30 +08:00
|
|
|
|
if (!threadId) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threadId = await ensureActiveThread(text)
|
2025-11-08 10:51:30 +08:00
|
|
|
|
if (!threadId) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
message.error('创建对话失败,请重试')
|
|
|
|
|
|
return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
userInput.value = ''
|
2025-11-12 14:04:34 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await nextTick()
|
|
|
|
|
|
scrollController.scrollToBottom(true)
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadState = getThreadState(threadId)
|
|
|
|
|
|
if (!threadState) return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-02-25 16:26:09 +08:00
|
|
|
|
if (useRunsApi) {
|
|
|
|
|
|
if ((threadMessages.value[threadId] || []).length === 0) {
|
2026-03-23 09:43:04 +08:00
|
|
|
|
const autoTitle = text.replace(/\s+/g, ' ').trim().slice(0, 2000)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
if (autoTitle) {
|
2026-03-23 09:43:04 +08:00
|
|
|
|
void (async () => {
|
|
|
|
|
|
try {
|
2026-03-24 21:48:28 +08:00
|
|
|
|
const generatedTitle = await agentApi.generateTitle(
|
|
|
|
|
|
autoTitle,
|
|
|
|
|
|
configStore.config?.fast_model
|
|
|
|
|
|
)
|
2026-03-23 09:43:04 +08:00
|
|
|
|
if (generatedTitle) {
|
|
|
|
|
|
const finalTitle = generatedTitle.slice(0, 30).replace(/\s+/g, ' ').trim()
|
|
|
|
|
|
if (finalTitle) {
|
|
|
|
|
|
void updateThread(threadId, finalTitle).catch(() => {})
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
2026-03-24 21:48:28 +08:00
|
|
|
|
console.error('Title generation failed:', e)
|
2026-03-23 09:43:04 +08:00
|
|
|
|
// 失败时使用原始文本作为标题
|
|
|
|
|
|
void updateThread(threadId, autoTitle.slice(0, 30)).catch(() => {})
|
|
|
|
|
|
}
|
|
|
|
|
|
})()
|
2026-02-25 16:26:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
resetOnGoingConv(threadId)
|
|
|
|
|
|
threadState.isStreaming = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
const runResp = await agentApi.createAgentRun(currentAgentId.value, {
|
|
|
|
|
|
query: text,
|
|
|
|
|
|
config: {
|
|
|
|
|
|
thread_id: threadId,
|
2026-03-25 03:36:08 +08:00
|
|
|
|
agent_config_id: selectedAgentConfigId.value
|
2026-02-25 16:26:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
image_content: image?.imageContent
|
|
|
|
|
|
})
|
|
|
|
|
|
const runId = runResp?.run_id
|
|
|
|
|
|
if (!runId) {
|
|
|
|
|
|
throw new Error('创建 run 失败:缺少 run_id')
|
|
|
|
|
|
}
|
|
|
|
|
|
await startRunStream(threadId, runId, 0)
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
threadState.isStreaming = false
|
|
|
|
|
|
handleChatError(error, 'send')
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 21:48:28 +08:00
|
|
|
|
// 如果是新对话,用 fast-model 异步生成标题(不阻塞消息发送)
|
|
|
|
|
|
if ((threadMessages.value[threadId] || []).length === 0) {
|
|
|
|
|
|
const autoTitle = text.replace(/\s+/g, ' ').trim().slice(0, 2000)
|
|
|
|
|
|
if (autoTitle) {
|
|
|
|
|
|
void (async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const generatedTitle = await agentApi.generateTitle(
|
|
|
|
|
|
autoTitle,
|
|
|
|
|
|
configStore.config?.fast_model
|
|
|
|
|
|
)
|
|
|
|
|
|
if (generatedTitle) {
|
|
|
|
|
|
const finalTitle = generatedTitle.slice(0, 30).replace(/\s+/g, ' ').trim()
|
|
|
|
|
|
if (finalTitle) {
|
|
|
|
|
|
void updateThread(threadId, finalTitle).catch(() => {})
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
console.error('Title generation failed:', e)
|
|
|
|
|
|
// 失败时使用原始文本作为标题
|
|
|
|
|
|
void updateThread(threadId, autoTitle.slice(0, 30)).catch(() => {})
|
|
|
|
|
|
}
|
|
|
|
|
|
})()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threadState.isStreaming = true
|
|
|
|
|
|
resetOnGoingConv(threadId)
|
|
|
|
|
|
threadState.streamAbortController = new AbortController()
|
2025-05-15 22:57:23 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const response = await sendMessage({
|
|
|
|
|
|
agentId: currentAgentId.value,
|
2025-12-19 04:04:48 +08:00
|
|
|
|
threadId: threadId,
|
2025-10-12 23:45:17 +08:00
|
|
|
|
text: text,
|
2025-11-12 14:04:34 +08:00
|
|
|
|
signal: threadState.streamAbortController?.signal,
|
2025-12-19 04:04:48 +08:00
|
|
|
|
imageData: image
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await handleAgentResponse(response, threadId)
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (error.name !== 'AbortError') {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.error('Stream error:', error)
|
|
|
|
|
|
handleChatError(error, 'send')
|
2025-12-19 02:22:29 +08:00
|
|
|
|
} else {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.warn('[Interrupted] Catch')
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threadState.isStreaming = false
|
2025-12-19 02:22:29 +08:00
|
|
|
|
} finally {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threadState.streamAbortController = null
|
2025-12-19 02:22:29 +08:00
|
|
|
|
// 异步加载历史记录,保持当前消息显示直到历史记录加载完成
|
2026-03-04 04:13:05 +08:00
|
|
|
|
fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId }).finally(() => {
|
|
|
|
|
|
// 历史记录加载完成后,安全地清空当前进行中的对话
|
|
|
|
|
|
resetOnGoingConv(threadId)
|
2026-03-05 23:06:43 +08:00
|
|
|
|
handleAgentStateRefresh(threadId)
|
2026-03-04 04:13:05 +08:00
|
|
|
|
scrollController.scrollToBottom()
|
|
|
|
|
|
})
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-10-06 21:44:17 +08:00
|
|
|
|
// 发送或中断
|
2025-12-19 04:04:48 +08:00
|
|
|
|
const handleSendOrStop = async (payload) => {
|
2026-03-24 21:42:37 +08:00
|
|
|
|
if (sendCooldownActive.value) {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadId = currentChatId.value
|
|
|
|
|
|
const threadState = getThreadState(threadId)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
if (isProcessing.value && threadState) {
|
|
|
|
|
|
if (useRunsApi && threadState.activeRunId) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await agentApi.cancelAgentRun(threadState.activeRunId)
|
|
|
|
|
|
message.info('已发送取消请求')
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
handleChatError(error, 'stop')
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-10-06 21:44:17 +08:00
|
|
|
|
|
2026-02-25 16:26:09 +08:00
|
|
|
|
if (threadState.streamAbortController) {
|
|
|
|
|
|
// 中断生成
|
|
|
|
|
|
threadState.streamAbortController.abort()
|
|
|
|
|
|
|
|
|
|
|
|
// 中断后刷新消息历史,确保显示最新的状态
|
|
|
|
|
|
try {
|
|
|
|
|
|
await fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId, delay: 500 })
|
2026-03-20 02:05:11 +08:00
|
|
|
|
fetchAgentState(currentAgentId.value, threadId)
|
2026-02-25 16:26:09 +08:00
|
|
|
|
message.info('已中断对话生成')
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('刷新消息历史失败:', error)
|
|
|
|
|
|
message.info('已中断对话生成')
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
2025-10-06 21:44:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await handleSendMessage(payload)
|
|
|
|
|
|
}
|
2025-10-06 21:44:17 +08:00
|
|
|
|
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// ==================== 人工审批处理 ====================
|
2026-03-07 23:28:25 +08:00
|
|
|
|
const handleApprovalWithStream = async (answer) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadId = approvalState.threadId
|
2025-11-01 21:34:16 +08:00
|
|
|
|
if (!threadId) {
|
2026-03-07 23:28:25 +08:00
|
|
|
|
message.error('无效的提问请求')
|
2026-01-15 06:01:34 +08:00
|
|
|
|
approvalState.showModal = false
|
|
|
|
|
|
return
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const threadState = getThreadState(threadId)
|
2025-11-01 21:34:16 +08:00
|
|
|
|
if (!threadState) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
message.error('无法找到对应的对话线程')
|
|
|
|
|
|
approvalState.showModal = false
|
|
|
|
|
|
return
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 使用审批 composable 处理审批
|
2026-03-07 23:28:25 +08:00
|
|
|
|
const response = await handleApproval(answer, currentAgentId.value, selectedAgentConfigId.value)
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!response) return // 如果 handleApproval 抛出错误,这里不会执行
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
|
|
|
|
|
// 处理流式响应
|
2026-02-25 16:26:09 +08:00
|
|
|
|
await handleAgentResponse(response, threadId)
|
2025-11-01 21:34:16 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
if (error.name !== 'AbortError') {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.error('Resume approval error:', error)
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
if (threadState) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
threadState.isStreaming = false
|
|
|
|
|
|
threadState.streamAbortController = null
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
2025-12-19 02:22:29 +08:00
|
|
|
|
|
|
|
|
|
|
// 异步加载历史记录,保持当前消息显示直到历史记录加载完成
|
2026-03-04 04:13:05 +08:00
|
|
|
|
fetchThreadMessages({ agentId: currentAgentId.value, threadId: threadId }).finally(() => {
|
|
|
|
|
|
resetOnGoingConv(threadId)
|
2026-03-20 02:05:11 +08:00
|
|
|
|
fetchAgentState(currentAgentId.value, threadId)
|
2026-03-04 04:13:05 +08:00
|
|
|
|
scrollController.scrollToBottom()
|
|
|
|
|
|
})
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2026-03-07 23:28:25 +08:00
|
|
|
|
const handleQuestionSubmit = (answer) => {
|
|
|
|
|
|
handleApprovalWithStream(answer)
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2026-03-07 23:28:25 +08:00
|
|
|
|
const handleQuestionCancel = () => {
|
|
|
|
|
|
handleApprovalWithStream('reject')
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-01 21:34:16 +08:00
|
|
|
|
|
2025-09-09 20:25:48 +08:00
|
|
|
|
// 处理示例问题点击
|
|
|
|
|
|
const handleExampleClick = (questionText) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
userInput.value = questionText
|
2025-09-09 20:25:48 +08:00
|
|
|
|
nextTick(() => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleSendMessage()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
const buildExportPayload = () => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const agentId = currentAgentId.value
|
|
|
|
|
|
let agentDescription = ''
|
2025-11-07 12:28:58 +08:00
|
|
|
|
if (agentId && agents.value && agents.value.length > 0) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
const agent = agents.value.find((a) => a.id === agentId)
|
|
|
|
|
|
agentDescription = agent ? agent.description || '' : ''
|
2025-11-07 12:28:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
const payload = {
|
|
|
|
|
|
chatTitle: currentThread.value?.title || '新对话',
|
|
|
|
|
|
agentName: currentAgentName.value || currentAgent.value?.name || '智能助手',
|
2025-11-07 12:28:58 +08:00
|
|
|
|
agentDescription: agentDescription || currentAgent.value?.description || '',
|
2025-10-13 11:12:25 +08:00
|
|
|
|
messages: conversations.value ? JSON.parse(JSON.stringify(conversations.value)) : [],
|
2026-01-15 06:01:34 +08:00
|
|
|
|
onGoingMessages: onGoingConvMessages.value
|
|
|
|
|
|
? JSON.parse(JSON.stringify(onGoingConvMessages.value))
|
|
|
|
|
|
: []
|
|
|
|
|
|
}
|
2025-10-13 11:12:25 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return payload
|
|
|
|
|
|
}
|
2025-06-27 01:48:09 +08:00
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
defineExpose({
|
2026-03-24 02:32:35 +08:00
|
|
|
|
getExportPayload: buildExportPayload,
|
|
|
|
|
|
selectThreadFromRoute
|
2026-01-15 06:01:34 +08:00
|
|
|
|
})
|
2025-10-13 11:12:25 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const toggleSidebar = () => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
chatUIStore.toggleSidebar()
|
|
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
2026-02-13 22:16:11 +08:00
|
|
|
|
const handleAgentStateRefresh = async (threadId = null) => {
|
|
|
|
|
|
if (!currentAgentId.value) return
|
2026-02-25 16:26:09 +08:00
|
|
|
|
const chatId = threadId || currentChatId.value
|
2026-02-13 22:16:11 +08:00
|
|
|
|
if (!chatId) return
|
2026-03-04 08:53:50 +08:00
|
|
|
|
await Promise.all([
|
|
|
|
|
|
fetchAgentState(currentAgentId.value, chatId),
|
|
|
|
|
|
refreshThreadFilesAndAttachments(chatId)
|
|
|
|
|
|
])
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-17 12:01:59 +08:00
|
|
|
|
|
2026-03-24 21:48:28 +08:00
|
|
|
|
const toggleAgentPanel = async () => {
|
|
|
|
|
|
const nextOpen = !isAgentPanelOpen.value
|
|
|
|
|
|
isAgentPanelOpen.value = nextOpen
|
|
|
|
|
|
|
|
|
|
|
|
if (nextOpen) {
|
|
|
|
|
|
await handleAgentStateRefresh()
|
|
|
|
|
|
}
|
2026-01-24 15:24:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 21:44:10 +08:00
|
|
|
|
// 处理面板宽度调整(使用比例)
|
|
|
|
|
|
// 向右拖动(deltaX > 0)让面板变窄,向左拖动(deltaX < 0)让面板变宽
|
2026-01-31 17:04:30 +08:00
|
|
|
|
const handlePanelResize = (deltaX) => {
|
2026-02-02 21:44:10 +08:00
|
|
|
|
if (!panelWrapperRef.value) return
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化容器宽度
|
|
|
|
|
|
if (!panelContainerWidth) {
|
|
|
|
|
|
const container = document.querySelector('.chat-content-container')
|
|
|
|
|
|
panelContainerWidth = container ? container.clientWidth : window.innerWidth
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const currentWidth = panelWrapperRef.value.offsetWidth
|
|
|
|
|
|
// 反转 deltaX:向右拖(deltaX > 0)让面板变窄
|
|
|
|
|
|
const newWidth = currentWidth - deltaX
|
|
|
|
|
|
const newRatio = newWidth / panelContainerWidth
|
|
|
|
|
|
|
|
|
|
|
|
// 限制在合理范围内
|
|
|
|
|
|
if (newRatio >= minPanelRatio && newRatio <= maxPanelRatio) {
|
|
|
|
|
|
// 直接操作 DOM,不触发 Vue 响应式,使用 !important 确保不被覆盖
|
|
|
|
|
|
panelWrapperRef.value.style.setProperty('flex', `0 0 ${newWidth}px`, 'important')
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 拖拽状态变化时,同步最终状态到 Vue 响应式数据
|
|
|
|
|
|
const handleResizingChange = (isResizingState) => {
|
|
|
|
|
|
isResizing.value = isResizingState
|
|
|
|
|
|
|
|
|
|
|
|
// 拖拽结束时,同步 DOM 宽度到响应式数据
|
|
|
|
|
|
if (!isResizingState && panelWrapperRef.value && panelContainerWidth) {
|
|
|
|
|
|
const finalWidth = panelWrapperRef.value.offsetWidth
|
|
|
|
|
|
panelRatio.value = finalWidth / panelContainerWidth
|
|
|
|
|
|
panelContainerWidth = 0 // 重置,供下次使用
|
|
|
|
|
|
}
|
2026-01-31 17:04:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== HELPER FUNCTIONS ====================
|
|
|
|
|
|
const getLastMessage = (conv) => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (!conv?.messages?.length) return null
|
2025-08-25 13:57:47 +08:00
|
|
|
|
for (let i = conv.messages.length - 1; i >= 0; i--) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (conv.messages[i].type === 'ai') return conv.messages[i]
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return null
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
const showMsgRefs = (msg) => {
|
2025-11-01 21:34:16 +08:00
|
|
|
|
// 如果正在审批中,不显示 refs
|
|
|
|
|
|
if (approvalState.showModal) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return false
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果当前线程ID与审批线程ID匹配,但审批框已关闭(说明刚刚处理完审批)
|
|
|
|
|
|
// 且当前有新的流式处理正在进行,则不显示之前被中断的消息的 refs
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (
|
|
|
|
|
|
approvalState.threadId &&
|
|
|
|
|
|
chatState.currentThreadId === approvalState.threadId &&
|
|
|
|
|
|
!approvalState.showModal &&
|
|
|
|
|
|
isProcessing
|
|
|
|
|
|
) {
|
|
|
|
|
|
return false
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 只有真正完成的消息才显示 refs
|
|
|
|
|
|
if (msg.isLast && msg.status === 'finished') {
|
2026-03-02 21:01:37 +08:00
|
|
|
|
return ['copy', 'sources']
|
2025-11-01 21:34:16 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return false
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2026-02-24 14:22:11 +08:00
|
|
|
|
const getConversationSources = (conv) => {
|
|
|
|
|
|
return MessageProcessor.extractSourcesFromConversation(conv, availableKnowledgeBases.value)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-25 13:57:47 +08:00
|
|
|
|
// ==================== LIFECYCLE & WATCHERS ====================
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const loadChatsList = async () => {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
const agentId = props.singleMode ? currentAgentId.value : null
|
|
|
|
|
|
if (props.singleMode && !agentId) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
console.warn('No agent selected, cannot load chats list')
|
|
|
|
|
|
threads.value = []
|
|
|
|
|
|
chatState.currentThreadId = null
|
2026-03-04 08:53:50 +08:00
|
|
|
|
threadFilesMap.value = {}
|
|
|
|
|
|
threadAttachmentsMap.value = {}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
2025-04-02 22:20:56 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
try {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await fetchThreads(agentId)
|
2026-03-16 21:39:49 +08:00
|
|
|
|
if (props.singleMode && currentAgentId.value !== agentId) return
|
2025-08-31 14:39:28 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果当前线程不在线程列表中,清空当前线程
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (
|
|
|
|
|
|
chatState.currentThreadId &&
|
|
|
|
|
|
!threads.value.find((t) => t.id === chatState.currentThreadId)
|
|
|
|
|
|
) {
|
|
|
|
|
|
chatState.currentThreadId = null
|
2025-08-31 14:39:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 02:32:35 +08:00
|
|
|
|
// singleMode 保持旧行为:自动选择首个可用对话
|
|
|
|
|
|
if (props.singleMode && threads.value.length > 0 && !chatState.currentThreadId) {
|
2026-03-08 22:33:24 +08:00
|
|
|
|
await selectChat(getFirstNonPinnedChat(threads.value).id)
|
2025-08-25 01:46:31 +08:00
|
|
|
|
}
|
2025-05-15 22:34:32 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'load')
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-11-14 12:50:32 +08:00
|
|
|
|
|
2025-08-31 14:39:28 +08:00
|
|
|
|
const initAll = async () => {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
try {
|
2025-08-31 14:39:28 +08:00
|
|
|
|
if (!agentStore.isInitialized) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await agentStore.initialize()
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
} catch (error) {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
handleChatError(error, 'load')
|
2025-04-02 13:00:25 +08:00
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
}
|
2025-04-02 13:00:25 +08:00
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
onMounted(async () => {
|
2026-01-15 06:01:34 +08:00
|
|
|
|
await initAll()
|
|
|
|
|
|
scrollController.enableAutoScroll()
|
|
|
|
|
|
})
|
2025-08-31 12:22:49 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
watch(
|
|
|
|
|
|
currentAgentId,
|
|
|
|
|
|
async (newAgentId, oldAgentId) => {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
if (!props.singleMode) {
|
|
|
|
|
|
if (oldAgentId === undefined) {
|
|
|
|
|
|
await loadChatsList()
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
if (newAgentId !== oldAgentId) {
|
|
|
|
|
|
// 清理当前线程状态
|
|
|
|
|
|
chatState.currentThreadId = null
|
|
|
|
|
|
threadMessages.value = {}
|
2026-03-04 08:53:50 +08:00
|
|
|
|
threadFilesMap.value = {}
|
|
|
|
|
|
threadAttachmentsMap.value = {}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
// 清理所有线程状态
|
|
|
|
|
|
resetOnGoingConv()
|
|
|
|
|
|
|
|
|
|
|
|
if (newAgentId) {
|
|
|
|
|
|
await loadChatsList()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
threads.value = []
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{ immediate: true }
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
watch(
|
|
|
|
|
|
conversations,
|
|
|
|
|
|
() => {
|
|
|
|
|
|
if (isProcessing.value) {
|
|
|
|
|
|
scrollController.scrollToBottom()
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{ deep: true, flush: 'post' }
|
|
|
|
|
|
)
|
2026-03-24 02:32:35 +08:00
|
|
|
|
|
|
|
|
|
|
watch(currentChatId, (threadId, oldThreadId) => {
|
|
|
|
|
|
if (threadId === oldThreadId) return
|
|
|
|
|
|
emit('thread-change', threadId || '')
|
|
|
|
|
|
})
|
2025-03-31 22:32:19 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
2025-06-30 22:29:23 +08:00
|
|
|
|
@import '@/assets/css/main.css';
|
2025-12-19 04:04:48 +08:00
|
|
|
|
@import '@/assets/css/animations.less';
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.chat-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
position: relative;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
.chat {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
overflow: hidden; /* Changed from overflow-x: hidden to overflow: hidden */
|
2025-03-31 22:32:19 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
|
box-sizing: border-box;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
transition: all 0.3s ease;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.chat-header {
|
|
|
|
|
|
user-select: none;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
// position: sticky; // Not needed if .chat is flex col and header is fixed height item
|
|
|
|
|
|
// top: 0;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
z-index: 10;
|
|
|
|
|
|
height: var(--header-height);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2025-08-08 22:57:14 +08:00
|
|
|
|
padding: 1rem 8px;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
flex-shrink: 0; /* Prevent header from shrinking */
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
2026-01-15 06:01:34 +08:00
|
|
|
|
.header__left,
|
|
|
|
|
|
.header__right {
|
2025-03-31 22:32:19 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-03-17 00:58:56 +08:00
|
|
|
|
gap: 8px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
2025-11-23 19:42:51 +08:00
|
|
|
|
|
|
|
|
|
|
.switch-icon {
|
|
|
|
|
|
color: var(--gray-500);
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agent-nav-btn:hover .switch-icon {
|
|
|
|
|
|
color: var(--main-500);
|
|
|
|
|
|
}
|
2026-03-17 00:58:56 +08:00
|
|
|
|
|
|
|
|
|
|
.sidebar-logo-toggle {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
border: 1px solid var(--gray-150);
|
|
|
|
|
|
background: var(--gray-0);
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sidebar-logo-image {
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sidebar-logo-fallback {
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sidebar-expand-overlay {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
inset: 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
background: var(--gray-100);
|
|
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transition: opacity 0.2s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sidebar-logo-toggle:hover .sidebar-expand-overlay {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
2026-03-23 09:43:04 +08:00
|
|
|
|
|
|
|
|
|
|
.conversation-title {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
.chat-content-container {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100%;
|
2026-02-02 21:44:10 +08:00
|
|
|
|
contain: layout;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-main {
|
2026-02-02 21:44:10 +08:00
|
|
|
|
flex: 1 1 0;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
overflow-y: auto; /* Scroll is here now */
|
|
|
|
|
|
position: relative;
|
2026-02-02 21:44:10 +08:00
|
|
|
|
transition:
|
|
|
|
|
|
flex-basis 0.3s cubic-bezier(0.4, 0, 0.2, 1),
|
|
|
|
|
|
width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
2026-01-31 14:16:53 +08:00
|
|
|
|
min-width: 0; /* Prevent flex item from overflowing */
|
2026-02-03 02:28:51 +08:00
|
|
|
|
|
|
|
|
|
|
scrollbar-width: none;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.agent-panel-wrapper {
|
2026-01-31 17:04:30 +08:00
|
|
|
|
flex: 0 0 auto;
|
2026-03-16 21:39:49 +08:00
|
|
|
|
align-self: flex-end;
|
|
|
|
|
|
height: 70vh;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
z-index: 20;
|
2026-02-02 21:44:10 +08:00
|
|
|
|
margin: 28px 8px;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
background: var(--gray-0);
|
2026-03-16 21:39:49 +08:00
|
|
|
|
border-radius: 16px;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
box-shadow: 0 4px 20px var(--shadow-1);
|
2026-02-25 12:10:50 +08:00
|
|
|
|
border: 1px solid var(--gray-150);
|
2026-01-31 17:04:30 +08:00
|
|
|
|
min-width: 0;
|
2026-02-02 21:44:10 +08:00
|
|
|
|
will-change: flex-basis;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
@media (max-height: 700px) {
|
|
|
|
|
|
.agent-panel-wrapper {
|
|
|
|
|
|
height: calc(100% - 56px);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-25 23:00:03 +08:00
|
|
|
|
/* Workbench transition animations */
|
2026-02-02 21:44:10 +08:00
|
|
|
|
.agent-panel-wrapper {
|
|
|
|
|
|
transition: flex-basis 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
transform: translateX(10px);
|
|
|
|
|
|
margin-left: -16px;
|
2026-01-25 23:00:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 21:44:10 +08:00
|
|
|
|
.agent-panel-wrapper.is-visible {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
|
margin-left: 0;
|
2026-01-25 23:00:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-02 21:44:10 +08:00
|
|
|
|
.agent-panel-wrapper.no-transition {
|
|
|
|
|
|
transition: none !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.chat-examples-input {
|
2026-03-24 22:48:32 +08:00
|
|
|
|
padding: 24px 0;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
h1 {
|
2026-03-24 22:48:32 +08:00
|
|
|
|
font-size: 1.4rem;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
color: var(--gray-1000);
|
2026-02-02 21:44:10 +08:00
|
|
|
|
margin: 0;
|
2025-09-09 20:25:48 +08:00
|
|
|
|
}
|
2025-12-19 04:04:48 +08:00
|
|
|
|
}
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2026-03-16 21:39:49 +08:00
|
|
|
|
.agent-segment-wrapper {
|
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
max-width: 100%;
|
2026-03-24 22:48:32 +08:00
|
|
|
|
margin: 0 auto 18px;
|
2026-03-16 21:39:49 +08:00
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
scrollbar-width: none;
|
|
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.ant-segmented) {
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
background: var(--gray-50);
|
|
|
|
|
|
border: 1px solid var(--gray-150);
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.ant-segmented-group) {
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.ant-segmented-item) {
|
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.ant-segmented-item-label) {
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-19 04:04:48 +08:00
|
|
|
|
.example-questions {
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
text-align: center;
|
2025-09-09 20:25:48 +08:00
|
|
|
|
|
2025-12-19 04:04:48 +08:00
|
|
|
|
.example-chips {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.example-chip {
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
background: var(--gray-25);
|
|
|
|
|
|
// border: 1px solid var(--gray-100);
|
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--gray-700);
|
|
|
|
|
|
transition: all 0.15s ease;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
// background: var(--main-25);
|
|
|
|
|
|
border-color: var(--main-200);
|
|
|
|
|
|
color: var(--main-700);
|
|
|
|
|
|
box-shadow: 0 0px 4px rgba(0, 0, 0, 0.03);
|
2025-09-09 20:25:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-19 04:04:48 +08:00
|
|
|
|
&:active {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
2025-09-09 20:25:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.chat-loading {
|
|
|
|
|
|
padding: 0 50px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 20%;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
z-index: 9;
|
|
|
|
|
|
animation: slideInUp 0.5s ease-out;
|
2025-11-05 09:20:58 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 12px;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
|
color: var(--gray-700);
|
2025-11-05 09:20:58 +08:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-spinner {
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 20px;
|
|
|
|
|
|
border: 2px solid var(--gray-200);
|
|
|
|
|
|
border-top-color: var(--main-color);
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
animation: spin 0.8s linear infinite;
|
2025-05-15 22:34:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-03-31 22:32:19 +08:00
|
|
|
|
.chat-box {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
flex-grow: 1;
|
2026-03-24 21:48:28 +08:00
|
|
|
|
padding: 1rem 1.5rem;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.conv-box {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 4px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin: 0 auto;
|
2026-01-24 15:24:25 +08:00
|
|
|
|
padding: 4px 1rem 0 1rem;
|
2025-11-23 01:39:44 +08:00
|
|
|
|
background: var(--gray-0);
|
2025-10-12 23:45:17 +08:00
|
|
|
|
z-index: 1000;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
|
|
|
|
|
|
.message-input-wrapper {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
|
|
.bottom-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.note {
|
|
|
|
|
|
font-size: small;
|
2025-11-23 01:39:44 +08:00
|
|
|
|
color: var(--gray-300);
|
2025-03-31 22:32:19 +08:00
|
|
|
|
margin: 4px 0;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-12-19 04:04:48 +08:00
|
|
|
|
|
|
|
|
|
|
&.start-screen {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 45%;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
bottom: auto;
|
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
|
width: 90%;
|
|
|
|
|
|
background: transparent;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
border-top: none;
|
|
|
|
|
|
z-index: 100; /* Ensure it's above other elements */
|
|
|
|
|
|
}
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
gap: 3px;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div {
|
2025-08-09 23:18:19 +08:00
|
|
|
|
width: 6px;
|
|
|
|
|
|
height: 6px;
|
|
|
|
|
|
background: linear-gradient(135deg, var(--main-color), var(--main-700));
|
2025-03-31 22:32:19 +08:00
|
|
|
|
border-radius: 50%;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
animation: dotPulse 1.4s infinite ease-in-out both;
|
2025-03-31 22:32:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div:nth-child(1) {
|
|
|
|
|
|
animation-delay: -0.32s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-dots div:nth-child(2) {
|
|
|
|
|
|
animation-delay: -0.16s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-09 23:18:19 +08:00
|
|
|
|
.loading-dots div:nth-child(3) {
|
|
|
|
|
|
animation-delay: 0s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-24 00:15:51 +08:00
|
|
|
|
.generating-status {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: flex-start;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
padding: 1rem 0;
|
|
|
|
|
|
animation: fadeInUp 0.4s ease-out;
|
|
|
|
|
|
transition: all 0.2s;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.generating-indicator {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
padding: 0.75rem 0rem;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
|
|
|
|
|
|
.generating-text {
|
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
|
font-size: 14px;
|
2025-08-09 23:18:19 +08:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
letter-spacing: 0.025em;
|
2025-12-30 19:40:09 +08:00
|
|
|
|
/* 恢复灰色调:深灰 -> 亮灰(高光) -> 深灰 */
|
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
|
90deg,
|
|
|
|
|
|
var(--gray-700) 0%,
|
|
|
|
|
|
var(--gray-700) 40%,
|
|
|
|
|
|
var(--gray-300) 45%,
|
|
|
|
|
|
var(--gray-200) 50%,
|
|
|
|
|
|
var(--gray-300) 55%,
|
|
|
|
|
|
var(--gray-700) 60%,
|
|
|
|
|
|
var(--gray-700) 100%
|
|
|
|
|
|
);
|
|
|
|
|
|
background-size: 200% auto;
|
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
|
background-clip: text;
|
|
|
|
|
|
color: transparent;
|
|
|
|
|
|
animation: waveFlash 2s linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes waveFlash {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
background-position: 200% center;
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
background-position: -200% center;
|
2025-06-24 00:15:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
@media (max-width: 1800px) {
|
|
|
|
|
|
.chat-header {
|
2025-11-23 01:39:44 +08:00
|
|
|
|
background-color: var(--gray-0);
|
2025-10-13 11:12:25 +08:00
|
|
|
|
border-bottom: 1px solid var(--gray-100);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
@media (max-width: 768px) {
|
2026-03-16 21:39:49 +08:00
|
|
|
|
.agent-segment-wrapper {
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.ant-segmented-item-label) {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-05-15 22:34:32 +08:00
|
|
|
|
.chat-header {
|
|
|
|
|
|
.header__left {
|
|
|
|
|
|
.text {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-03-24 22:48:32 +08:00
|
|
|
|
|
|
|
|
|
|
// 智能体选择器的图标对齐
|
|
|
|
|
|
.agent-segment-wrapper {
|
|
|
|
|
|
:deep(.ant-segmented-item-label) {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.agent-option-label) {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.agent-option-icon) {
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
color: var(--gray-600);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-25 13:57:47 +08:00
|
|
|
|
</style>
|
2025-10-13 11:12:25 +08:00
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
2025-11-08 17:14:54 +08:00
|
|
|
|
.agent-nav-btn {
|
2025-10-13 11:12:25 +08:00
|
|
|
|
display: flex;
|
2026-01-22 12:15:46 +08:00
|
|
|
|
gap: 6px;
|
2026-01-15 04:54:53 +08:00
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
|
height: 32px;
|
2025-10-13 11:12:25 +08:00
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
2026-01-22 11:16:15 +08:00
|
|
|
|
border-radius: 6px;
|
2025-10-13 11:12:25 +08:00
|
|
|
|
color: var(--gray-900);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
transition: background-color 0.3s;
|
2025-11-08 17:14:54 +08:00
|
|
|
|
border: none;
|
|
|
|
|
|
background: transparent;
|
2025-10-13 11:12:25 +08:00
|
|
|
|
|
2025-11-08 17:14:54 +08:00
|
|
|
|
&:hover:not(.is-disabled) {
|
2026-01-15 04:54:53 +08:00
|
|
|
|
background-color: var(--gray-100);
|
2025-10-13 11:12:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-08 17:14:54 +08:00
|
|
|
|
&.is-disabled {
|
2025-11-08 13:59:56 +08:00
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
opacity: 0.7;
|
2025-11-08 17:14:54 +08:00
|
|
|
|
pointer-events: none;
|
2025-11-08 13:59:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 11:12:25 +08:00
|
|
|
|
.nav-btn-icon {
|
2026-01-15 04:54:53 +08:00
|
|
|
|
height: 18px;
|
2025-10-13 11:12:25 +08:00
|
|
|
|
}
|
2025-11-08 13:59:56 +08:00
|
|
|
|
|
|
|
|
|
|
.loading-icon {
|
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-24 15:24:25 +08:00
|
|
|
|
.hide-text {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (min-width: 769px) {
|
|
|
|
|
|
.hide-text {
|
|
|
|
|
|
display: inline;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-14 12:50:32 +08:00
|
|
|
|
/* AgentState 按钮有内容时的样式 */
|
2025-12-17 23:39:53 +08:00
|
|
|
|
.agent-nav-btn.agent-state-btn.has-content:hover:not(.is-disabled) {
|
|
|
|
|
|
color: var(--main-700);
|
|
|
|
|
|
background-color: var(--main-20);
|
2025-11-14 12:50:32 +08:00
|
|
|
|
}
|
2026-01-24 15:24:25 +08:00
|
|
|
|
|
|
|
|
|
|
.agent-nav-btn.agent-state-btn.active {
|
|
|
|
|
|
color: var(--main-700);
|
|
|
|
|
|
background-color: var(--main-20);
|
|
|
|
|
|
}
|
2026-01-15 06:01:34 +08:00
|
|
|
|
</style>
|