-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (36 loc) · 1.73 KB
/
Copy path.env.example
File metadata and controls
43 lines (36 loc) · 1.73 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
# Which backend Calibrate talks to. "duckdb" runs entirely locally against a
# real TPC-H benchmark dataset generated by DuckDB's own tpch extension - no
# account needed. "snowflake" points at a real Snowflake account's
# SNOWFLAKE_SAMPLE_DATA.TPCH_SF1 database.
CALIBRATE_BACKEND=duckdb
# Which LLM powers agent/core.py's generation loop. "anthropic" (default)
# needs ANTHROPIC_API_KEY and real account credit. "gemini" needs
# GEMINI_API_KEY only - Google AI Studio's free tier needs no credit card.
CALIBRATE_LLM_PROVIDER=anthropic
# Required when CALIBRATE_LLM_PROVIDER=anthropic.
# Get one at https://console.anthropic.com/settings/keys
ANTHROPIC_API_KEY=
# Required when CALIBRATE_LLM_PROVIDER=gemini.
# Get a free key (no credit card) at https://aistudio.google.com/apikey
GEMINI_API_KEY=
CALIBRATE_GEMINI_MODEL=gemini-flash-lite-latest
# Only required when CALIBRATE_BACKEND=snowflake. Sign up for a free trial
# at https://trial.snowflake.com - the sample data ships on every account.
SNOWFLAKE_ACCOUNT=
SNOWFLAKE_USER=
SNOWFLAKE_PASSWORD=
SNOWFLAKE_WAREHOUSE=COMPUTE_WH
SNOWFLAKE_ROLE=ACCOUNTADMIN
SNOWFLAKE_DATABASE=SNOWFLAKE_SAMPLE_DATA
SNOWFLAKE_SCHEMA=TPCH_SF1
# Where dbt writes BUILT models (staging/marts). Must be a database/schema
# your role can create objects in - SNOWFLAKE_SAMPLE_DATA above is
# read-only. On a fresh trial account, create these once with:
# CREATE DATABASE IF NOT EXISTS CALIBRATE;
# CREATE SCHEMA IF NOT EXISTS CALIBRATE.CALIBRATE_MARTS;
SNOWFLAKE_TARGET_DATABASE=CALIBRATE
SNOWFLAKE_TARGET_SCHEMA=CALIBRATE_MARTS
# Local DuckDB file path (used when CALIBRATE_BACKEND=duckdb)
DUCKDB_PATH=data/calibrate.duckdb
# Where governance audit log + validation run history are persisted
CALIBRATE_STATE_DB=data/calibrate_state.db