-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
40 lines (33 loc) · 1.64 KB
/
.env.example
File metadata and controls
40 lines (33 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# =============================================================================
# MANUAL CONFIGURATION (Required before deployment)
# =============================================================================
# 1. AWS Credentials (from AWS SSO/Vocareum)
AWS_ACCESS_KEY_ID=...from-aws-sso...
AWS_SECRET_ACCESS_KEY=...from-aws-sso...
AWS_SESSION_TOKEN=...from-aws-sso...
# 2. AWS Account/Region (from AWS Console)
AWS_ACCOUNT_ID=...your-aws-account-id...
AWS_REGION=us-east-1
# 3. NVIDIA API Keys (from build.nvidia.com)
NVIDIA_BUILD_API_KEY=...from-nvidia-build...
NVIDIA_ACCOUNT_EMAIL=...your-nvidia-email...
# 4. NVIDIA Model API Keys (from build.nvidia.com - API Catalog if deployment does not works)
NVIDIA_MODEL_EMBADDING=...embedding-model-api-key...
NVIDIA_MODEL_GENERATE=...generation-model-api-key...
# =============================================================================
# AUTO-GENERATED BY DEPLOYMENT SCRIPTS (Do not edit manually)
# =============================================================================
# The following variables are automatically populated by scripts/parse_outputs.py
# after running deploy-backend.sh and deploy-model.sh
# Backend Infrastructure (from deploy-backend.sh)
APP_API_GATEWAY_URL=...auto-generated...
APP_KG_BUCKET=...auto-generated...
APP_RAW_BUCKET=...auto-generated...
APP_VERIFIED_BUCKET=...auto-generated...
APP_JOBS_TABLE=...auto-generated...
APP_STATE_MACHINE_ARN=...auto-generated...
APP_SENTENCES_TABLE=...auto-generated...
APP_LLM_CALL_LOG_TABLE=...auto-generated...
# Model Endpoints (from deploy-model.sh)
APP_GENERATE_ENDPOINT_URL=...auto-generated...
APP_EMBED_ENDPOINT_URL=...auto-generated...