mirror of
https://github.com/usestrix/strix.git
synced 2026-08-19 10:05:12 +02:00
- Add Config class with all env var defaults in one place - Auto-load saved config on startup (env vars take precedence) - Auto-save config after successful LLM warm-up - Replace scattered os.getenv() calls with Config.get()
13 lines
180 B
Python
13 lines
180 B
Python
from strix.config.config import (
|
|
Config,
|
|
apply_saved_config,
|
|
save_current_config,
|
|
)
|
|
|
|
|
|
__all__ = [
|
|
"Config",
|
|
"apply_saved_config",
|
|
"save_current_config",
|
|
]
|