25 lines
1.6 KiB
Bash
25 lines
1.6 KiB
Bash
# ── Stack ──────────────────────────────────────────────────────────────────────
|
|
# Get these from your deployed stack outputs:
|
|
# aws cloudformation describe-stacks --stack-name <name> --query "Stacks[0].Outputs"
|
|
STACK_NAME=my-copilotkit-agentcore-lg # or -st for Strands
|
|
MEMORY_ID= # MemoryArn last segment (after final /)
|
|
|
|
# ── AWS credentials ────────────────────────────────────────────────────────────
|
|
# Docker containers can't read ~/.aws/credentials — paste your creds here.
|
|
# Run: aws configure export-credentials --format env (for SSO / temp creds)
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_SESSION_TOKEN= # leave blank if using long-term creds
|
|
AWS_DEFAULT_REGION=us-east-1
|
|
|
|
# ── Agent selection ────────────────────────────────────────────────────────────
|
|
# Which agent to run locally: langgraph or strands (default: strands)
|
|
AGENT=strands
|
|
|
|
# ── CopilotKit Intelligence / Threads (optional) ──────────────────────────────
|
|
# Enables persistent Threads in the CopilotKit bridge + frontend.
|
|
COPILOTKIT_LICENSE_TOKEN=
|
|
INTELLIGENCE_API_KEY=
|
|
INTELLIGENCE_API_URL=http://localhost:4201
|
|
INTELLIGENCE_GATEWAY_WS_URL=ws://localhost:4401
|