-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.47 KB
/
Copy path.env.example
File metadata and controls
33 lines (29 loc) · 1.47 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
# The environment variables plumbline reads. Nothing reads a .env file: export
# these in your shell (below), or load this file with your own tooling. plumbline
# reads keys from the environment only, never from a config file, and never
# writes a key to a results artifact or a log line.
#
# bash or zsh, current shell only:
# export TYPESAFE_API_KEY="ts-..."
#
# PowerShell, current session only:
# $env:TYPESAFE_API_KEY = "ts-..."
# PowerShell, persisted for the current user:
# [Environment]::SetEnvironmentVariable("TYPESAFE_API_KEY", "ts-...", "User")
# Hosted Jev, via the TypeSafe Python SDK. Create a key at https://console.typesafe.ai/
TYPESAFE_API_KEY=
# Optional. Points the typesafe_wire adapter at a self-hosted Jev-compatible
# endpoint instead of the hosted service. The endpoint is part of the cache key,
# so a self-hosted run is never served a hosted run's answers, and it is
# recorded in the artifact and named in the report. ANTHROPIC_BASE_URL does the
# same for the generative arm. `plumbline run --base-url` sets it for one run
# and takes precedence over either variable.
TYPESAFE_BASE_URL=
# Generative control arm, which speaks Anthropic's Messages API. Only needed if
# you run the generative adapter. ANTHROPIC_BASE_URL points it at a proxy or a
# compatible endpoint, and like TYPESAFE_BASE_URL is recorded and keyed on.
ANTHROPIC_API_KEY=
ANTHROPIC_BASE_URL=
# Local checkpoints. Only needed with the "local" extra installed.
HF_HOME=
HUGGING_FACE_HUB_TOKEN=