mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-06-11 01:14:45 +02:00
fix: remove hardcoded timezone and region names for portability
- Timezone now configurable (default America/Boise) - Router prompt generates region name instructions from config - Any operator can run MeshAI for their region without code changes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
2255ca5803
commit
c5f4dac8b6
4 changed files with 25 additions and 6 deletions
|
|
@ -330,6 +330,9 @@ class DashboardConfig:
|
|||
class Config:
|
||||
"""Main configuration container."""
|
||||
|
||||
# Global settings
|
||||
timezone: str = "America/Boise" # IANA timezone for local time display
|
||||
|
||||
bot: BotConfig = field(default_factory=BotConfig)
|
||||
connection: ConnectionConfig = field(default_factory=ConnectionConfig)
|
||||
response: ResponseConfig = field(default_factory=ResponseConfig)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue