-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy path.env.local.example
More file actions
47 lines (36 loc) · 2.83 KB
/
.env.local.example
File metadata and controls
47 lines (36 loc) · 2.83 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
41
42
43
44
45
46
47
# ──────────────────────────────────────────────────────────────
# Copy this file to .env.local and replace the placeholder values
# with your own configuration:
#
# cp .env.local.example .env.local
#
# All variables are server-side only (no NEXT_PUBLIC_ prefix).
# Client components receive these values as props from server
# component wrappers — they are never exposed to the browser.
# ──────────────────────────────────────────────────────────────
# Application metadata (displayed in the UI and page title)
APP_NAME="Data Analyst Assistant"
APP_DESCRIPTION="Video Games Sales Data Analyst powered by Amazon Bedrock AgentCore"
# ──────────────────────────────────────────────────────────────
# Amazon Bedrock AgentCore Configuration
# ──────────────────────────────────────────────────────────────
# The ARN of your Bedrock AgentCore runtime
AGENT_RUNTIME_ARN="arn:aws:bedrock-agentcore:us-east-1:000000000000:runtime/YourAgentRuntime"
# The endpoint name for the agent (usually "DEFAULT")
AGENT_ENDPOINT_NAME="DEFAULT"
# The AgentCore Memory ID for long-term memory
MEMORY_ID=""
# ──────────────────────────────────────────────────────────────
# Assistant UI Configuration
# ──────────────────────────────────────────────────────────────
# Welcome message shown in the chat before any conversation
WELCOME_MESSAGE="I'm your Video Games Sales Data Analyst, crunching data for insights."
# Maximum number of characters allowed in the assistant input
MAX_LENGTH_INPUT_SEARCH="500"
# ──────────────────────────────────────────────────────────────
# Chart Generation (Amazon Bedrock)
# ──────────────────────────────────────────────────────────────
# Model ID used for generating chart configurations
MODEL_ID_FOR_CHART="us.anthropic.claude-haiku-4-5-20251001-v1:0"
# DynamoDB table for storing query results (used by the agent)
QUESTION_ANSWERS_TABLE_NAME="your-query-results-table-name"