feat(plugin): 禁用 hello_world_plugin 插件

refactor(prompt): 将日志级别从 info 调整为 debug
fix(mem_monitor): 启用内存监控并调整监控间隔至 2400s
feat(llm_models): 添加系统提示支持,优化请求策略
refactor(main): 更新内存监控启动日志信息
refactor(user_profile_tool): 将用户画像更新日志级别调整为 debug
refactor(exa_engine): 移除搜索引擎请求中的高亮片段选项
feat(system_prompt): 添加系统提示内容
This commit is contained in:
Windpicker-owo
2025-12-08 12:02:44 +08:00
parent 43dbfb2a1e
commit 071a160da9
8 changed files with 125 additions and 23 deletions

View File

@@ -212,7 +212,7 @@ class PromptManager:
# 如果模板被修改了就创建一个新的临时Prompt实例
if modified_template != original_prompt.template:
logger.info(f"'{name}'应用了Prompt注入规则")
logger.debug(f"'{name}'应用了Prompt注入规则")
# 创建一个新的临时Prompt实例不进行注册
temp_prompt = Prompt(
template=modified_template,