gemini-agent / config /config.yaml
likhon saheikh
Deploy full Gemini Agentic Platform
ad8ba8a
# Config file for Gemini Agentic Platform
# API Configuration
api:
api_key: "${GEMINI_API_KEY:-your_api_key_here}"
base_url: "${GEMINI_BASE_URL:-https://api.gemini3.com/v1}"
timeout: "${GEMINI_TIMEOUT:-30}"
max_retries: "${GEMINI_MAX_RETRIES:-3}"
rate_limit: "${GEMINI_RATE_LIMIT:-10}"
# Browser Configuration
browser:
headless: "${BROWSER_HEADLESS:-false}"
window_size: "${BROWSER_WINDOW_SIZE:-1920,1080}"
proxy: "${BROWSER_PROXY:-}"
user_agent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
# Logging Configuration
logging:
level: "${LOG_LEVEL:-INFO}"
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
# Hugging Face Spaces Configuration
spaces:
port: "${PORT:-7860}"
host: "${HOST:-0.0.0.0}"
debug: "${DEBUG:-false}"
# Mobile Configuration
mobile:
platform_name: "${MOBILE_PLATFORM_NAME:-Android}"
device_name: "${MOBILE_DEVICE_NAME:-Android Emulator}"
app_package: "${MOBILE_APP_PACKAGE:-com.android.chrome}"
# Screenshot Configuration
screenshots:
save_path: "${SCREENSHOT_SAVE_PATH:-screenshots}"
format: "${SCREENSHOT_FORMAT:-png}"
auto_screenshot: "${AUTO_SCREENSHOT:-true}"
quality: "${SCREENSHOT_QUALITY:-90}"