Merge pull request #131 from GiGiDKR/feat-local_support_with_UTF-8_encoding-update

feat: local support with utf 8 encoding
This commit is contained in:
Beehive Innovations
2025-06-27 08:02:14 -07:00
committed by GitHub
25 changed files with 1845 additions and 75 deletions

View File

@@ -136,6 +136,15 @@ def _calculate_mcp_prompt_limit() -> int:
MCP_PROMPT_SIZE_LIMIT = _calculate_mcp_prompt_limit()
# Language/Locale Configuration
# LOCALE: Language/locale specification for AI responses
# When set, all AI tools will respond in the specified language while
# maintaining their analytical capabilities
# Examples: "fr-FR", "en-US", "zh-CN", "zh-TW", "ja-JP", "ko-KR", "es-ES",
# "de-DE", "it-IT", "pt-PT"
# Leave empty for default language (English)
LOCALE = os.getenv("LOCALE", "")
# Threading configuration
# Simple in-memory conversation threading for stateless MCP environment
# Conversations persist only during the Claude session