2114ccd278
CI / Lint & Test (Python 3.13) (push) Failing after 2s
CI / Lint & Test (Python 3.14) (push) Failing after 1s
CI / Lint & Test (Python 3.12) (push) Failing after 2s
CI / DCO Check (push) Has been skipped
Scorecard supply-chain security / Scorecard analysis (push) Failing after 2s
42 lines
1.8 KiB
Bash
42 lines
1.8 KiB
Bash
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=
|