-
Notifications
You must be signed in to change notification settings - Fork 902
Expand file tree
/
Copy path.env.example
More file actions
41 lines (33 loc) · 1.82 KB
/
Copy path.env.example
File metadata and controls
41 lines (33 loc) · 1.82 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
ENV=dev # options: dev|stg|prd
# Active LLM provider. Selects which provider answers credentials,
# metadata, and default-model lookups. Leave unset to default to nv_build.
# Options: openai | anthropic | anthropic_proxy | nv_build
SKILLSPECTOR_PROVIDER=
# Provider credentials — set the one matching SKILLSPECTOR_PROVIDER (or
# leave SKILLSPECTOR_PROVIDER unset and set NVIDIA_INFERENCE_KEY for the
# default nv_build path).
# For SKILLSPECTOR_PROVIDER=nv_build (and the default).
NVIDIA_INFERENCE_KEY=
# For SKILLSPECTOR_PROVIDER=openai. Point OPENAI_BASE_URL at any
# OpenAI-compatible endpoint (Ollama, vLLM, another inference gateway,
# etc.); leave unset for stock api.openai.com.
OPENAI_API_KEY=
OPENAI_BASE_URL=
# For SKILLSPECTOR_PROVIDER=anthropic.
ANTHROPIC_API_KEY=
# For SKILLSPECTOR_PROVIDER=anthropic_proxy (Vertex-style raw-predict proxy).
# Supports corporate API gateways, GCP Vertex AI, and self-hosted proxies.
ANTHROPIC_PROXY_ENDPOINT_URL=
ANTHROPIC_PROXY_API_KEY=
# ANTHROPIC_PROXY_API_VERSION=vertex-2023-10-16 # optional; defaults to vertex-2023-10-16
# SKILLSPECTOR_SSL_VERIFY=false # set to false for internal/self-signed CAs
# SkillSpector config
SKILLSPECTOR_MODEL= # leave empty to use the active provider's bundled default (see README); set to override (e.g. gpt-5.2)
# SKILLSPECTOR_MODEL_REGISTRY=./model_registry.yaml # optional override; defaults to each provider's bundled YAML in src/skillspector/providers/
SKILLSPECTOR_LOG_LEVEL=WARNING # options: DEBUG|INFO|WARNING|ERROR
# langchain/langsmith config (all optional)
LANGCHAIN_TRACING_V2=false
LANGCHAIN_API_KEY=
LANGCHAIN_WORKSPACE=
LANGCHAIN_PROJECT=
LANGCHAIN_ENDPOINT=