feat: 实现流式消息显示和界面优化

This commit is contained in:
JianFeeeee
2026-04-11 09:30:56 +08:00
parent 4075f9a30d
commit b33a87d19e
14 changed files with 538 additions and 193 deletions

View File

@ -15,11 +15,8 @@ from .models.config import AppConfig
def main():
"""主函数"""
try:
# 加载配置
config = AppConfig.from_env()
# 创建并运行应用
app = GraphMemoryApp(config=config)
# 不传入配置,让应用自己从配置文件或环境变量加载
app = GraphMemoryApp()
app.run()
except KeyboardInterrupt: