Xin Zhang
[feature]:prompt config.
73e6ae0
raw
history blame
432 Bytes
import { defineStore } from 'pinia';
export const useSettingsStore = defineStore({
id: 'settings',
persist: true,
state: () => {
return {
role: '',
language: 'zh',
sider_open: true,
echoCancel: true,
prompt_en: 'You are a helpful assistant.',
prompt_zh: '你是一个乐于助人的助手。',
}
},
actions: {
}
});