# Credentials with pay-per-token Anthropic API key read from a file.
#
# Usage:
#   python -m agentrelay.run_graph graph.yaml --credentials credentials-api-key.yaml
#
# The single anthropic entry is auto-selected (no --anthropic-credential needed).
# The key is read from ~/.config/anthropic/api_key at startup, keeping the
# actual secret out of this repo-specific YAML file.

token_tiers:
  read_only:
    GH_TOKEN: ghp_readonly_xxxx
  standard:
    GH_TOKEN: ghp_standard_yyyy
  elevated:
    GH_TOKEN: ghp_elevated_zzzz

anthropic:
  api_key:
    type: api_key
    key_file: ~/.config/anthropic/api_key
