pollen-robotics/reachy-mini-chatbox
5
1OPENAI_API_KEY=2ELEVENLABS_API_KEY=3GEMINI_API_KEY=4DEEPGRAM_API_KEY=5GRADIUM_API_KEY=6 7MODEL_NAME="gpt-realtime"8 9# Local vision model (only used with --local-vision CLI flag)10# By default, vision is handled by gpt-realtime when the camera tool is used11LOCAL_VISION_MODEL=HuggingFaceTB/SmolVLM2-2.2B-Instruct12 13# Cache for local VLM (only used with --local-vision CLI flag)14HF_HOME=./cache15 16# Hugging Face token for accessing datasets/models17HF_TOKEN=18 19# Profile selection (defaults to "default" when unset)20REACHY_MINI_CUSTOM_PROFILE="example"21 22# Optional external profile/tool directories23# REACHY_MINI_EXTERNAL_PROFILES_DIRECTORY=external_content/external_profiles24# REACHY_MINI_EXTERNAL_TOOLS_DIRECTORY=external_content/external_tools25 26# Optional: discover and auto-load all tools found in REACHY_MINI_EXTERNAL_TOOLS_DIRECTORY,27# even if they are not listed in the selected profile's tools.txt.28# This is convenient for downloaded tools used with built-in/default profiles.29# AUTOLOAD_EXTERNAL_TOOLS=1