-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1014 Bytes
/
Copy path.env.example
File metadata and controls
34 lines (28 loc) · 1014 Bytes
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
# ================================================================
# HelixAgent – Environment Variables
# ================================================================
# Copy this file to .env and fill in real values.
# cp .env.example .env
# .env is gitignored and should NEVER be committed.
# ================================================================
# --- API Server ---
API_HOST=0.0.0.0
API_PORT=8000
# --- Logging ---
LOG_LEVEL=INFO
# --- Snowflake (data source) ---
SNOWFLAKE_ACCOUNT=your_account_identifier
SNOWFLAKE_USER=your_snowflake_user
SNOWFLAKE_PASSWORD=your_snowflake_password
SNOWFLAKE_DATABASE=AGENT_DB
SNOWFLAKE_SCHEMA=PUBLIC
SNOWFLAKE_WAREHOUSE=COMPUTE_WH
# --- AWS ---
AWS_DEFAULT_REGION=us-east-1
AWS_ACCESS_KEY_ID=your_access_key_id
AWS_SECRET_ACCESS_KEY=your_secret_access_key
# --- MLflow Experiment Tracking ---
MLFLOW_TRACKING_URI=http://127.0.0.1:5000
MLFLOW_EXPERIMENT_NAME=HelixAgent-Experiments
# --- OpenAI / LLM (optional) ---
OPENAI_API_KEY=your_openai_api_key