/* * MimiClaw Build-time Secrets * * This is the ONLY way to configure MimiClaw. * Copy this file to mimi_secrets.h and fill in your values. * After any change, rebuild: idf.py fullclean && idf.py build * * cp mimi_secrets.h.example mimi_secrets.h */ #pragma once /* WiFi */ #define MIMI_SECRET_WIFI_SSID "" #define MIMI_SECRET_WIFI_PASS "" /* Telegram Bot */ #define MIMI_SECRET_TG_TOKEN "" /* Discord Bot */ #define MIMI_SECRET_DC_TOKEN "" #define MIMI_SECRET_DC_CHANNEL_ID "" /* Feishu Bot */ #define MIMI_SECRET_FS_APP_ID "" #define MIMI_SECRET_FS_APP_SECRET "" #define MIMI_SECRET_FS_ALLOW_FROM "" /* Channel Mode: telegram | discord | feishu */ #define MIMI_SECRET_CHANNEL_MODE "telegram" /* Anthropic API */ #define MIMI_SECRET_API_KEY "" #define MIMI_SECRET_MODEL "" #define MIMI_SECRET_MODEL_PROVIDER "anthropic" /* Anthropic URL or OpenAI URL */ #define MIMI_LLM_API_URL "https://api.anthropic.com/v1/messages" // or #define MIMI_OPENAI_API_URL "https://api.openai.com/v1/chat/completions" /* HTTP Proxy (leave empty or set both) */ #define MIMI_SECRET_PROXY_HOST "" #define MIMI_SECRET_PROXY_PORT "" /* Brave Search API */ #define MIMI_USE_BAIDU_SEARCH 0 #define MIMI_SECRET_SEARCH_KEY "" /* Timezone (POSIX TZ format) */ #define MIMI_TIMEZONE "CST-8" /# flash memory choice*/ #define MIMI_USE_SDCARD 0