22 lines
660 B
YAML
22 lines
660 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: nvi-config
|
|
namespace: nvi
|
|
data:
|
|
# Warehouse (in-cluster postgres)
|
|
DATABASE_URL: "postgresql://nvi:nvi@postgres:5432/nvi"
|
|
|
|
# Active dataset. Selects api/datasets/<name>/, the Postgres schema, and
|
|
# ctrl/seed/data/<name>.sqlite. Restart the api to switch.
|
|
NVI_DATASET: "financial"
|
|
|
|
# LLM. Supported providers: groq, anthropic, openai.
|
|
# Secrets (*_API_KEY) live in the Secret built by kustomize from .env.
|
|
LLM_PROVIDER: "groq"
|
|
GROQ_MODEL: "llama-3.3-70b-versatile"
|
|
ANTHROPIC_MODEL: "claude-sonnet-4-6"
|
|
|
|
# Langfuse (nivii project in the lng cluster).
|
|
LANGFUSE_HOST: "http://lng.local.ar"
|