fix(Messages): Improve auto-rename topic logic with message filtering
This commit is contained in:
parent
702568502e
commit
dcc90cd79f
@ -19,7 +19,7 @@ import {
|
|||||||
} from '@renderer/store/messages'
|
} from '@renderer/store/messages'
|
||||||
import type { Assistant, Message, Topic } from '@renderer/types'
|
import type { Assistant, Message, Topic } from '@renderer/types'
|
||||||
import { captureScrollableDivAsBlob, captureScrollableDivAsDataURL, runAsyncFunction } from '@renderer/utils'
|
import { captureScrollableDivAsBlob, captureScrollableDivAsDataURL, runAsyncFunction } from '@renderer/utils'
|
||||||
import { last } from 'lodash'
|
import { isEmpty, last } from 'lodash'
|
||||||
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
||||||
import { useTranslation } from 'react-i18next'
|
import { useTranslation } from 'react-i18next'
|
||||||
import InfiniteScroll from 'react-infinite-scroll-component'
|
import InfiniteScroll from 'react-infinite-scroll-component'
|
||||||
@ -92,9 +92,15 @@ const Messages: React.FC<MessagesProps> = ({ assistant, topic, setActiveTopic })
|
|||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
const autoRenameTopic = useCallback(async () => {
|
const autoRenameTopic = useCallback(async () => {
|
||||||
const messages = messagesRef.current
|
let messages = [...messagesRef.current]
|
||||||
const _topic = getTopic(assistant, topic.id)
|
const _topic = getTopic(assistant, topic.id)
|
||||||
|
|
||||||
|
if (isEmpty(messages)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
messages = messages.filter((m) => m.status === 'success')
|
||||||
|
|
||||||
if (!enableTopicNaming) {
|
if (!enableTopicNaming) {
|
||||||
const topicName = messages[0]?.content.substring(0, 50)
|
const topicName = messages[0]?.content.substring(0, 50)
|
||||||
if (topicName) {
|
if (topicName) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user