# CompText Mobile Agent Configuration
# Copy this file to .env.mobile and configure your settings
# ======================
# Ollama Cloud Settings
# ======================
# Ollama Cloud API Key (required for cloud mode)
OLLAMA_API_KEY=your_ollama_api_key_here
# Ollama API Base URL
# Default: https://api.ollama.ai (cloud)
# Local: http://localhost:11434
OLLAMA_API_BASE=https://api.ollama.ai
# ======================
# Android/ADB Settings
# ======================
# Path to ADB executable (optional, uses PATH by default)
# ADB_PATH=/path/to/adb
# Device serial (optional, auto-detects first device)
# ANDROID_SERIAL=emulator-5554
# Screenshot storage directory
SCREENSHOT_DIR=/tmp/mobile_agent
# ======================
# Agent Settings
# ======================
# Agent mode: cloud, local, or hybrid
AGENT_MODE=cloud
# Debug mode (verbose logging)
DEBUG=false
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO
# ======================
# Notion (for CompText DSL updates)
# ======================
# Notion API Token (from existing CompText setup)
NOTION_API_TOKEN=your_notion_token_here
# CompText Database ID
COMPTEXT_DATABASE_ID=0e038c9b52c5466694dbac288280dd93
# ======================
# Performance Tuning
# ======================
# Maximum steps per task (default: 10)
# MAX_STEPS=10
# Step delay in seconds (default: 0.5)
# STEP_DELAY=0.5
# Enable CompText optimization (default: true)
# USE_COMPTEXT=true