fix: conversationOptions
This commit is contained in:
parent
20aa35f209
commit
05a241408e
|
@ -37,7 +37,7 @@ const { usingContext, toggleUsingContext } = useUsingContext()
|
|||
const { uuid } = route.params as { uuid: string }
|
||||
|
||||
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
|
||||
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !item.error)))
|
||||
const conversationList = computed(() => dataSources.value.filter(item => (!item.inversion && !!item.conversationOptions)))
|
||||
|
||||
const prompt = ref<string>('')
|
||||
const loading = ref<boolean>(false)
|
||||
|
|
Loading…
Reference in New Issue