feat(api): 统一 LLM JSON 调用层 llm_json_call,按域 Schema 迁移 chat/memoir agents

This commit is contained in:
Kevin
2026-04-03 13:34:27 +08:00
parent 41518bda11
commit 43d1689e9c
28 changed files with 1006 additions and 352 deletions

View File

@@ -2,6 +2,8 @@
Chat 模块提示词:用户资料收集 + 对话访谈
"""
from app.agents.chat.output_rules import chat_output_rules
# Profile prompts用户资料收集
from app.agents.chat.prompts_profile import (
PROFILE_FIELD_NAMES,
@@ -20,6 +22,7 @@ from app.agents.chat.prompts_conversation import (
)
__all__ = [
"chat_output_rules",
"PROFILE_FIELD_NAMES",
"format_user_profile_context",
"get_missing_profile_fields",