✨ 新功能: - 添加Telegram Bot通知支持 - 账目记录自动推送到Telegram - 支持多个Bot配置管理 - 支持群组和个人通知 📊 数据库: - 新增telegram_notification_configs表 - 存储Bot配置和通知类型 🔧 后端API: - GET /api/telegram/notifications - 获取所有配置 - POST /api/telegram/notifications - 创建配置 - PUT /api/telegram/notifications/:id - 更新配置 - DELETE /api/telegram/notifications/:id - 删除配置 - POST /api/telegram/test - 测试Bot配置 💬 通知功能: - 自动发送账目记录通知 - 包含交易类型、金额、分类、账户等信息 - 支持格式化显示(类型图标、状态标识) - 配置创建时自动测试有效性 📝 文档: - 添加完整的使用说明文档 - API接口说明和示例 - 常见问题解答
36 lines
918 B
TOML
36 lines
918 B
TOML
# Codex 临时配置(基于全局配置)
|
|
# SessionID: 4795f195-3362-4043-80c3-10b1f9ce9dec, ChatID: -4846353145
|
|
|
|
# 沙盒和权限配置(强制覆盖)
|
|
sandbox_mode = "danger-full-access"
|
|
approval_policy = "never"
|
|
|
|
model_provider = "crs"
|
|
model = "gpt-5-codex"
|
|
model_reasoning_effort = "high"
|
|
disable_response_storage = true
|
|
preferred_auth_method = "apikey"
|
|
|
|
[model_providers.crs]
|
|
name = "crs"
|
|
base_url = "https://ktapi.cc/openai"
|
|
wire_api = "responses"
|
|
|
|
ask_for_approval = "never"
|
|
sandbox = "danger-full-access"
|
|
|
|
[projects."/Users/hahaha"]
|
|
trust_level = "trusted"
|
|
ask_for_approval = "never"
|
|
sandbox = "danger-full-access"
|
|
|
|
[mcp_servers.funstat-mcp]
|
|
url = "http://172.16.74.159:8091/sse"
|
|
|
|
|
|
# 会话特定的 MCP 服务器配置
|
|
[mcp_servers.agentapi]
|
|
command = "/Users/hahaha/agentapi/agentapi"
|
|
args = ["proxy", "http://localhost:8089/mcp/sse?sessionID=4795f195-3362-4043-80c3-10b1f9ce9dec&chatID=-4846353145"]
|
|
|