if [[ -z "${ANTHROPIC_API_KEY}" ]]; then
  echo "KISS Sorcar requires ANTHROPIC_API_KEY in the environment" 
  exit 1
fi
if [[ -z "${GEMINI_API_KEY}" ]]; then
  echo "KISS Sorcar requires GEMINI_API_KEY in the environment"
  exit 1
fi

if [[ $# -gt 0 ]]; then
  uv run src/kiss/agents/sorcar/sorcar_agent.py "$@"
else
  uv run sorcar
fi
