# okgv configuration
OKGV_SCHEMA=config.schema:ToolCallSchema

# Structure file folded into per-topic constraint specs (default: config/structure.json)
# OKGV_STRUCTURE=config/structure.json

# Optional, only if you write custom validators. Comma-separated module paths,
# imported so their @register'd tags resolve before structure.json _meta is
# folded. The module must exist (e.g. create config/validators.py). Leave this
# commented out if you only use the built-in validators.
# OKGV_VALIDATORS=config.validators

# Database (SQLite, default: ./okgv.db)
# OKGV_DB=okgv.db

# Embedding model (format: backend/model-name)
# Requires: pip install okgv[embeddings]
EMBED_MODEL=sentence-transformers/all-MiniLM-L6-v2

# Embedding dimension (auto-detected from model if not set)
# EMBED_DIM=384

# Review (none = opt-in per command, all = every submission flagged)
OKGV_REVIEW=none
