| | |
| | | export const activeChatRoom = computed(() => chatRoomList.value?.find((item) => item.id === activeRoomId.value)); |
| | | export const activeSampleId = ref(null); |
| | | export const activeSectionAId = ref(null); |
| | | export const topGroupId = ref(null); |
| | | |
| | | export const activeLLMId = ref(null); |
| | | |
| | | /** @description 当前聊天室 groupType */ |
| | | export const activeGroupType = computed({ |
| | | get: () => { |
| | | const result = getRoomConfig(activeRoomId.value, 'activeGroupType'); |
| | | const result = getRoomConfig(activeRoomId.value, 'activeGroupType') ??'业务场景'; |
| | | return result; |
| | | }, |
| | | set: (value) => { |
| | |
| | | */ |
| | | export const getAllData = async () => { |
| | | getSceneGroupList(); |
| | | |
| | | |
| | | }; |
| | | |
| | | //#endregion |