🎨chore: 使用 oxlint, oxfmt&格式化代码
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type {ResultBlockMeta} from '~/components/aigc/drawing';
|
||||
import type {ChatSession} from "~/typings/llm";
|
||||
import type { ResultBlockMeta } from '~/components/aigc/drawing'
|
||||
import type { ChatSession } from '~/typings/llm'
|
||||
|
||||
export interface HistoryItem {
|
||||
fid: string
|
||||
@@ -9,20 +9,24 @@ export interface HistoryItem {
|
||||
images?: string[]
|
||||
}
|
||||
|
||||
export const useHistory = defineStore('xsh_assistant_aigc_history', () => {
|
||||
const text2img = ref<HistoryItem[]>([])
|
||||
const chatSessions = ref<ChatSession[]>([])
|
||||
const setChatSessions = (sessions: ChatSession[]) => {
|
||||
chatSessions.value = sessions
|
||||
}
|
||||
export const useHistory = defineStore(
|
||||
'xsh_assistant_aigc_history',
|
||||
() => {
|
||||
const text2img = ref<HistoryItem[]>([])
|
||||
const chatSessions = ref<ChatSession[]>([])
|
||||
const setChatSessions = (sessions: ChatSession[]) => {
|
||||
chatSessions.value = sessions
|
||||
}
|
||||
|
||||
return {
|
||||
text2img,
|
||||
chatSessions,
|
||||
setChatSessions,
|
||||
return {
|
||||
text2img,
|
||||
chatSessions,
|
||||
setChatSessions,
|
||||
}
|
||||
},
|
||||
{
|
||||
persist: {
|
||||
storage: persistedState.localStorage,
|
||||
},
|
||||
}
|
||||
}, {
|
||||
persist: {
|
||||
storage: persistedState.localStorage
|
||||
}
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user