fix(i18n): replace remaining hardcoded language directives in LLM prompts

- oasis_profile_generator: replace hardcoded "使用中文" with dynamic get_language_instruction()
- ontology_generator: remove hardcoded "(中文)" from schema annotation
- report_agent: replace Chinese-specific language consistency rules with language-neutral ones
- zep_tools: dynamically select quote style based on locale
This commit is contained in:
ghostubborn
2026-04-01 15:55:04 +08:00
parent fbaa3dbbeb
commit f75c6487b3
4 changed files with 13 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ ONTOLOGY_SYSTEM_PROMPT = """你是一个专业的知识图谱本体设计专家
"attributes": []
}
],
"analysis_summary": "对文本内容的简要分析说明(中文)"
"analysis_summary": "对文本内容的简要分析说明"
}
```