refactor history archi

This commit is contained in:
bridge
2026-01-12 00:36:10 +08:00
parent 287f9d2ae4
commit 2caa5586be
7 changed files with 13 additions and 7 deletions

View File

@@ -5,5 +5,7 @@ export { systemApi } from './modules/system';
export { llmApi } from './modules/llm';
export { eventApi } from './modules/event';
export type { InitStatusDTO } from '../types/api';
// 保持向后兼容的聚合对象 (Optional, for transition)
// 但这次我们直接重构,不再保留大对象,鼓励按需引用

View File

@@ -55,7 +55,7 @@ const tips = [
'丹药有生效的时间限制',
'由于大模型需要思考,游戏启动可能耗时较久',
'模拟世界对大模型token消耗较大请注意',
'设定开局历史,世界也会随之而改变',
'开局时设定历史,整个修仙世界也会随之而改变',
]
const currentTip = ref(tips[Math.floor(Math.random() * tips.length)])