feat: 添加时区设置功能,默认时区改为 CST-8
Some checks failed
Build / idf-build (push) Has been cancelled
Build & Release / build (push) Has been cancelled

- 新增 set_timezone LLM 工具,支持通过对话设置时区
- 新增 set_timezone / timezone_show CLI 命令
- 默认时区从 PST 改为 CST-8(中国标准时间 UTC+8)
- 支持 POSIX 格式和 18 个城市名映射(Asia/Shanghai 等)
- 时区通过 NVS 持久化存储(system_config namespace)
- config_show 中显示当前时区配置
- 更新 changelog.md 和 taolun.md 文档
This commit is contained in:
2026-04-01 00:50:41 +08:00
parent eedc6757d8
commit 7dc4122778
24 changed files with 645 additions and 52 deletions

View File

@@ -47,6 +47,26 @@
#define MIMI_SECRET_TAVILY_KEY ""
#endif
/* Provider-specific API keys (fallback when generic MIMI_SECRET_API_KEY is empty) */
#ifndef MIMI_SECRET_ANTHROPIC_API_KEY
#define MIMI_SECRET_ANTHROPIC_API_KEY ""
#endif
#ifndef MIMI_SECRET_OPENAI_API_KEY
#define MIMI_SECRET_OPENAI_API_KEY ""
#endif
#ifndef MIMI_SECRET_SILICONFLOW_API_KEY
#define MIMI_SECRET_SILICONFLOW_API_KEY ""
#endif
#ifndef MIMI_SECRET_SILICONFLOW_BASE_URL
#define MIMI_SECRET_SILICONFLOW_BASE_URL "https://api.siliconflow.cn/v1"
#endif
#ifndef MIMI_SECRET_VOLCENGINE_API_KEY
#define MIMI_SECRET_VOLCENGINE_API_KEY ""
#endif
#ifndef MIMI_SECRET_VOLCENGINE_BASE_URL
#define MIMI_SECRET_VOLCENGINE_BASE_URL "https://ark.cn-beijing.volces.com/api/v3"
#endif
/* WiFi */
#define MIMI_WIFI_MAX_RETRY 10
#define MIMI_WIFI_RETRY_BASE_MS 1000
@@ -80,7 +100,7 @@
#define MIMI_AGENT_SEND_WORKING_STATUS 1
/* Timezone (POSIX TZ format) */
#define MIMI_TIMEZONE "PST8PDT,M3.2.0,M11.1.0"
#define MIMI_TIMEZONE "CST-8"
/* LLM */
#define MIMI_LLM_DEFAULT_MODEL "claude-opus-4-5"
@@ -166,6 +186,9 @@
#define MIMI_NVS_KEY_VOLCENGINE_API_KEY "volcengine_api_key"
#define MIMI_NVS_KEY_VOLCENGINE_BASE_URL "volcengine_base_url"
/* System NVS Keys */
#define MIMI_NVS_KEY_TIMEZONE "timezone"
/* WiFi Onboarding (Captive Portal) */
#define MIMI_ONBOARD_AP_PREFIX "MimiClaw-"
#define MIMI_ONBOARD_AP_PASS "" /* open network */