|
|
@ -37,7 +37,7 @@ const { usingContext, toggleUsingContext } = useUsingContext()
|
|
|
|
const { uuid } = route.params as { uuid: string }
|
|
|
|
const { uuid } = route.params as { uuid: string }
|
|
|
|
|
|
|
|
|
|
|
|
const dataSources = computed(() => chatStore.getChatByUuid(+uuid))
|
|
|
|
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 prompt = ref<string>('')
|
|
|
|
const loading = ref<boolean>(false)
|
|
|
|
const loading = ref<boolean>(false)
|
|
|
|