- Fix tool calls format for DeepSeek API (add type field) - Fix config event handler name - Fix message history display (preserve all messages) - Fix right panel width and scrolling - Add async config update to prevent UI freeze - Add prompt caching with singleton pattern - Update build scripts with complete hidden imports
165 lines
6.4 KiB
Python
165 lines
6.4 KiB
Python
import asyncio
|
||
from pathlib import Path
|
||
from textual.app import App, ComposeResult
|
||
from textual.binding import Binding
|
||
|
||
from core import BackendServer, BackendClient
|
||
from .models.message import Message
|
||
|
||
|
||
class GraphMemoryApp(App):
|
||
CSS_PATH = [
|
||
Path(__file__).parent / "styles" / "app.css",
|
||
Path(__file__).parent / "styles" / "messages.css",
|
||
Path(__file__).parent / "styles" / "components.css",
|
||
]
|
||
|
||
BINDINGS = [
|
||
Binding("f1", "show_help", "帮助"),
|
||
Binding("f2", "toggle_sidebar", "侧边栏"),
|
||
Binding("f3", "toggle_tool_details", "工具详情"),
|
||
Binding("f5", "clear_history", "清屏"),
|
||
Binding("f6", "quit", "退出"),
|
||
]
|
||
|
||
def __init__(self, backend_server: BackendServer = None, **kwargs):
|
||
super().__init__(**kwargs)
|
||
self._backend_server = backend_server
|
||
self._backend_client = BackendClient(backend_server) if backend_server else None
|
||
self._api_configured = False
|
||
|
||
def compose(self) -> ComposeResult:
|
||
from .widgets.left_panel import LeftPanel
|
||
from .widgets.right_panel import RightPanel
|
||
from .widgets.status_bar import StatusBar
|
||
yield LeftPanel()
|
||
yield RightPanel()
|
||
yield StatusBar()
|
||
|
||
def on_mount(self) -> None:
|
||
from .widgets.status_bar import StatusBar
|
||
status_bar = self.query_one(StatusBar)
|
||
|
||
if not self._backend_server:
|
||
from .widgets.message_history import MessageHistory
|
||
history = self.query_one(MessageHistory)
|
||
error = Message(role="assistant", content="后端未初始化")
|
||
history.add_message(error)
|
||
status_bar.set_api_status(False)
|
||
return
|
||
|
||
status = self._backend_client.get_status()
|
||
self._api_configured = status.get("config", {}).get("api_key", "") != ""
|
||
status_bar.set_api_status(self._api_configured)
|
||
|
||
from .widgets.message_history import MessageHistory
|
||
history = self.query_one(MessageHistory)
|
||
welcome = Message(
|
||
role="assistant",
|
||
content=f"系统就绪\nAPI Key: {'已配置' if self._api_configured else '未配置'}\n\n输入消息开始对话"
|
||
)
|
||
history.add_message(welcome)
|
||
|
||
def on_unmount(self) -> None:
|
||
if self._backend_client:
|
||
self._backend_client.shutdown()
|
||
|
||
def action_show_help(self) -> None:
|
||
self.notify("F1-帮助 F2-侧边栏 F3-工具详情 F5-清屏 F6-退出", title="快捷键", timeout=10)
|
||
|
||
def action_toggle_sidebar(self) -> None:
|
||
from .widgets.right_panel import RightPanel
|
||
sidebar = self.query_one(RightPanel)
|
||
sidebar.toggle()
|
||
|
||
def action_toggle_tool_details(self) -> None:
|
||
from .widgets.message_history import MessageHistory
|
||
history = self.query_one(MessageHistory)
|
||
history.toggle_latest_tool_details()
|
||
|
||
def action_clear_history(self) -> None:
|
||
from .widgets.message_history import MessageHistory
|
||
history = self.query_one(MessageHistory)
|
||
history.clear_messages()
|
||
|
||
def on_input_box_send_message(self, event) -> None:
|
||
if not self._backend_client:
|
||
self.notify("后端未初始化", title="错误", severity="error")
|
||
return
|
||
|
||
if not self._api_configured:
|
||
self.notify("请先配置 API Key (按 F2 打开侧边栏)", title="提示", severity="warning")
|
||
return
|
||
|
||
user_input = event.content
|
||
from .widgets.message_history import MessageHistory
|
||
from .widgets.status_bar import StatusBar
|
||
|
||
history = self.query_one(MessageHistory)
|
||
status_bar = self.query_one(StatusBar)
|
||
|
||
history.add_message(Message(role="user", content=user_input))
|
||
history.add_message(Message(role="assistant", content="⏳ 正在处理..."))
|
||
status_bar.set_processing(True)
|
||
|
||
asyncio.create_task(self._process(user_input))
|
||
|
||
async def _process(self, user_input: str) -> None:
|
||
from .widgets.message_history import MessageHistory
|
||
from .widgets.status_bar import StatusBar
|
||
|
||
history = self.query_one(MessageHistory)
|
||
status_bar = self.query_one(StatusBar)
|
||
|
||
try:
|
||
result = await asyncio.get_event_loop().run_in_executor(
|
||
None,
|
||
lambda: self._backend_client.send_message(user_input)
|
||
)
|
||
|
||
# 更新"处理中"消息为实际回复
|
||
if result.get("success"):
|
||
content = result.get("content", "(无回复)")
|
||
history.update_latest_message(content)
|
||
else:
|
||
error = result.get("error", "未知错误")
|
||
history.update_latest_message(f"❌ 错误: {error}")
|
||
|
||
except Exception as e:
|
||
history.update_latest_message(f"❌ 异常: {str(e)}")
|
||
finally:
|
||
status_bar.set_processing(False)
|
||
|
||
def on_config_section_config_changed(self, event) -> None:
|
||
"""处理配置变更事件"""
|
||
if not self._backend_client:
|
||
self.notify("后端未初始化,无法保存配置", title="错误", severity="error")
|
||
return
|
||
|
||
config = event.config
|
||
api_key = config.api_key
|
||
base_url = config.base_url
|
||
|
||
# 异步更新配置,避免阻塞UI
|
||
asyncio.create_task(self._update_config_async(api_key, base_url))
|
||
|
||
async def _update_config_async(self, api_key: str, base_url: str) -> None:
|
||
"""异步更新配置"""
|
||
from .widgets.status_bar import StatusBar
|
||
status_bar = self.query_one(StatusBar)
|
||
|
||
try:
|
||
result = await asyncio.get_event_loop().run_in_executor(
|
||
None,
|
||
lambda: self._backend_client.update_config(api_key=api_key, base_url=base_url)
|
||
)
|
||
|
||
if result.get("success"):
|
||
self._api_configured = bool(api_key)
|
||
status_bar.set_api_status(self._api_configured)
|
||
self.notify("✅ 配置已保存并生效", title="配置成功", severity="information")
|
||
else:
|
||
error = result.get("error", "未知错误")
|
||
self.notify(f"❌ 配置失败: {error}", title="配置失败", severity="error")
|
||
except Exception as e:
|
||
self.notify(f"❌ 配置异常: {str(e)}", title="配置失败", severity="error") |