26 lines
760 B
YAML
26 lines
760 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.
|
|
LLM_PROVIDER: "groq"
|
|
GROQ_API_KEY: "REDACTED_GROQ_API_KEY"
|
|
GROQ_MODEL: "llama-3.3-70b-versatile"
|
|
|
|
ANTHROPIC_API_KEY: ""
|
|
ANTHROPIC_MODEL: "claude-sonnet-4-6"
|
|
|
|
# Langfuse (nivii project in the lng cluster).
|
|
LANGFUSE_HOST: "http://lng.local.ar"
|
|
LANGFUSE_PUBLIC_KEY: "REDACTED_LANGFUSE_PUBLIC_KEY"
|
|
LANGFUSE_SECRET_KEY: "REDACTED_LANGFUSE_SECRET_KEY"
|