-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 1.03 KB
/
.env.example
File metadata and controls
22 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Prompt Mining Environment Variables
# Copy this file to .env and fill in your values
# =============================================================================
# HuggingFace (required for model loading)
# =============================================================================
HF_TOKEN=hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
HF_HOME=/path/to/huggingface/cache
# =============================================================================
# AWS Credentials (required for optional SAE feature interpretation by an LLM via Bedrock)
# =============================================================================
# Option 1: Standard IAM credentials
# AWS_ACCESS_KEY_ID=AKIAxxxxxxxxxxxxxxxx
# AWS_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# AWS_DEFAULT_REGION=us-west-2
# Option 2: Bearer token (SSO/Identity Center)
# AWS_BEARER_TOKEN_BEDROCK=your_bearer_token_here
# Note: boto3 uses its standard credential chain. Configure whichever
# authentication method works for your setup (~/.aws/credentials, IAM role, etc.)