qwen_agent/skills/developing/user-context-loader/hooks/pre_memory_prompt.py
朱潮 425f3c5bb4 chore: replace Chinese comments and log messages with English
Convert all Chinese comments, docstrings, logger/print output,
HTTPException detail messages, and API response messages to English
across the entire codebase. Functional zh/ja localized strings
(e.g. prompt templates, timezone display names, date formats) are
preserved as-is.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-30 19:45:35 +08:00

22 lines
509 B
Python

#!/usr/bin/env python3
"""
PreMemoryPrompt Hook - User context loader example
Executed when the fact extraction prompt (FACT_RETRIEVAL_PROMPT) is loaded,
reads memory_prompt.md in the same directory as the custom fact extraction
prompt template.
"""
import sys
from pathlib import Path
def main():
prompt_file = Path(__file__).parent / "memory_prompt.md"
if prompt_file.exists():
print(prompt_file.read_text(encoding="utf-8"))
return 0
if __name__ == '__main__':
sys.exit(main())