Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ FORECAST_ENABLE_LIGHTGBM=false
# FORECAST_ENABLE_XGBOOST defaults to false (opt-in; install ml-xgboost extra)
# FORECAST_ENABLE_RANDOM_FOREST=false # PRP-36 optional model — pure sklearn, no extra needed

# Demo / Showcase settings
# E6 (#412) — root for saved-workspace export bundles (manifest + checksums).
SHOWCASE_EXPORT_ROOT=./artifacts/showcase

# RAG Configuration
# Embedding Provider: "openai" or "ollama"
RAG_EMBEDDING_PROVIDER=openai
Expand Down
4 changes: 4 additions & 0 deletions app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ class Settings(BaseSettings):
registry_artifact_root: str = "./artifacts/registry"
registry_duplicate_policy: Literal["allow", "deny", "detect"] = "detect"

# Demo / Showcase
# E6 (#412) — root for workspace export bundles (manifest + checksums).
showcase_export_root: str = "./artifacts/showcase"

# Analytics
analytics_max_rows: int = 10000
analytics_max_date_range_days: int = 730
Expand Down
Loading