28 lines
908 B
YAML
28 lines
908 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.
|
|
# Flip LLM_PROVIDER to switch — the other configs stay so we can A/B easily.
|
|
LLM_PROVIDER: "openai"
|
|
|
|
# Local vLLM serving Qwen2.5-Coder-7B-Instruct-AWQ on mcrndeb.
|
|
OPENAI_BASE_URL: "http://mcrndeb:11000/v1"
|
|
OPENAI_MODEL: "Qwen/Qwen2.5-Coder-7B-Instruct-AWQ"
|
|
|
|
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"
|