-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset_env.template.ps1
More file actions
21 lines (18 loc) · 969 Bytes
/
Copy pathset_env.template.ps1
File metadata and controls
21 lines (18 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$env:AWS_DEFAULT_REGION = "us-east-2"
$env:S3_BUCKET_NAME = "aws-rag-docs-YOUR_ACCOUNT_ID_HERE"
$env:PINECONE_API_KEY = "your-pinecone-api-key-here"
$env:PINECONE_INDEX_NAME = "aws-rag-index"
$env:ALLOWED_ORIGIN = "https://your-cloudfront-domain.example.com"
$env:EMBEDDING_MODEL_ID = "amazon.titan-embed-text-v2:0"
$env:LLM_MODEL_ID = "us.anthropic.claude-sonnet-4-6"
# Add AWS CLI to path if needed inside venv
# $env:PATH = $env:PATH + ";C:\Program Files\Amazon\AWSCLIV2"
Write-Host "Environment variables set:"
Write-Host " S3_BUCKET_NAME = $env:S3_BUCKET_NAME"
Write-Host " PINECONE_INDEX_NAME = $env:PINECONE_INDEX_NAME"
Write-Host " ALLOWED_ORIGIN = $env:ALLOWED_ORIGIN"
Write-Host " EMBEDDING_MODEL_ID = $env:EMBEDDING_MODEL_ID"
Write-Host " LLM_MODEL_ID = $env:LLM_MODEL_ID"
if ($env:PINECONE_API_KEY -eq "your-pinecone-api-key-here") {
Write-Host "WARNING: Replace PINECONE_API_KEY with your real key!" -ForegroundColor Yellow
}