历史记录

@if (conversations().length === 0) {

暂无历史记录

} @else { @for (conv of conversations(); track conv.objectId) { } }

AI知识问答

{{ currentConversationId() ? '会话进行中' : '随时随地获取销售知识支持' }}

@for (msg of messages(); track msg.id; let last = $last) { @if (msg.type === 'ai') {
@if (msg.thoughts) {
@if (isThoughtExpanded(msg.id)) {
{{ msg.thoughts }}
}
} @if (msg.content) { } @if (msg.images?.length) {
@for (img of msg.images; track img) { }
}
} @else {

{{ msg.content }}

} } @if (showThinking()) {
}
@if (isGenerating()) { } @else { }

确认清除当前对话

清除后将无法找回当前对话记录,确定要清除吗?

@if (contextMenu(); as menu) {
}