清理表情

This commit is contained in:
2026-01-31 18:00:05 +08:00
parent 674f48c74b
commit 5eb13324c2
15 changed files with 394 additions and 156 deletions

View File

@@ -117,7 +117,7 @@ class LLMHelper:
if use_cache and app_config.llm_cache_enabled:
cached_response = llm_cache.get(cache_key)
if cached_response:
print("💾 使用LLM缓存响应")
print("[CACHE] 使用LLM缓存响应")
return cached_response
# 调用LLM